import { ReactNode } from 'react'; export declare enum SlideDirection { TOP = "top", TOP_LEFT = "top-left", TOP_RIGHT = "top-right", BOTTOM = "bottom", BOTTOM_LEFT = "bottom-left", BOTTOM_RIGHT = "bottom-right", LEFT = "left", RIGHT = "right" } type Props = { direction: SlideDirection; delay?: number; children: ReactNode; }; export declare const SlideIn: ({ children, direction, delay }: Props) => import("react/jsx-runtime").JSX.Element; export {};