/// import { Stage } from '..'; declare type TransitionProps = { state: boolean; timeout: number; children: (stage: Stage, shouldMount: boolean) => React.ReactNode; }; export declare function Transition({ state, timeout, children }: TransitionProps): import("react").ReactNode; export {};