import React from 'react'; export type ModalWrapperProps = { /** * The dialog will remain open as long as the value is true */ readonly isOpen: boolean; /** * Timeout (in `milliseconds`), after which the dialog box will be unmounted */ readonly destroyTimeout: number; /** * should the modal component grab focus when opening and return it back when closing?\ * **Default:** `true` */ readonly autofocus?: boolean; readonly children: React.ReactNode | readonly React.ReactNode[]; }; declare const ModalWrapper: React.FC; export default ModalWrapper;