import { FC, ReactNode } from 'react'; export interface ModalProps { isOpen?: boolean; isLoading?: boolean; error?: string; children?: ReactNode; actions?: ReactNode; handleOnSubmit: (e: any) => void; title?: string; isBookingLoader?: boolean; } declare const Modal: FC; export default Modal;