import { ReactNode } from "react"; export interface iBasicModalProps { title?: string; text?: string; open: boolean; onClose: Function; requesting?: boolean; isAcceptable?: boolean; acceptButtonText?: string; onAccept?: Function; isCancelable?: boolean; cancelbuttonText?: string; onCancel?: Function; size?: 'small' | 'medium' | 'large' | 'fullScreen'; isLock?: boolean; hideCloseIcon?: boolean; children?: ReactNode; }