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