/// <reference types="react" />
import { type RevealProps } from "../Reveal";
export interface RollProps extends Omit<RevealProps, "keyframes"> {
    /**
     * Specifies if the animation should make element(s) disappear.
     * @default false
     */
    reverse?: boolean;
}
export declare const Roll: React.FC<RollProps>;
