type SlideInProps = { children: React.ReactNode | React.ReactNode[]; direction: 'left' | 'right' | 'top' | 'bottom'; style?: React.CSSProperties; className?: string; enabled?: boolean; hiding?: boolean; onAnimationEnd?: React.AnimationEventHandler; }; export declare const SlideIn: React.FC; export {};