import React from 'react'; export interface ModalInnerContainerProps extends React.HTMLAttributes { /** * The dialog will remain open as long as the value is true */ readonly isOpen: boolean; /** * The function that will be called to close the dialog */ readonly onRequestClose: (event: React.MouseEvent | KeyboardEvent) => void; } declare const _default: React.ForwardRefExoticComponent>; export default _default;