import type { ReactNode } from 'react'; import type { KittTransitionProps } from '../propTypes'; type From = 'right' | 'bottom'; export interface SlideInProps extends KittTransitionProps { from?: From; } export declare function SlideIn({ appear, children, from, visible, onEnter, onExit, onEntered, onExited, }: SlideInProps): ReactNode; export {}; //# sourceMappingURL=index.d.ts.map