import { default as React } from 'react'; declare const animationMap: { fade: string[]; 'toast-slide': string[]; 'modal-slide': string[]; }; export interface TransitionProps { in: boolean; children: React.ReactElement; variant?: keyof typeof animationMap; onExit?: () => void; } export declare const Transition: (props: TransitionProps) => React.ReactElement> | null; export {};