import { FC, JSX } from "react"; //#region src/DelayUnmount.d.ts type Props = { /** Delay in milliseconds before unmounting the children */ delay: number; /** The children to render. When set to null or false, the component will delay unmounting for the specified delay period */ children: JSX.Element | null | false; }; /** * A component that delays unmounting its children by a specified duration. * * Useful for exit animations where you need to keep a component rendered * while its exit animation completes. */ declare const DelayUnmount: FC; //#endregion export { DelayUnmount };