import { CSSProperties } from 'react'; export type IModal = { title?: string open?: boolean onClose?: () => void hideCloseIcon?: boolean allowClickAway?: boolean allowScroll?: boolean allowEsc?: boolean className?: string style?: CSSProperties children?: React.ReactNode; }