declare type MountTransitionProps = { isMounted: boolean; unmountDelay: number; }; export declare const useMountTransition: ({ isMounted, unmountDelay }: MountTransitionProps) => boolean; export {};