import { RevealProps } from '../Reveal'; type RotateDirection = "bottom-left" | "bottom-right" | "top-left" | "top-right"; export interface RotateProps extends Omit { /** * Origin of the animation. * @default undefined */ direction?: RotateDirection; /** * Specifies if the animation should make element(s) disappear. * @default false */ reverse?: boolean; } export declare const Rotate: React.FC; export {};