import * as React from "react"; export interface PortalProps { children: any; } export interface ModalProps { children: any; open: boolean; close: () => void; closeOnBackdropClick?: boolean; title?: string; width?: number; cta?: React.ReactNode; } declare const Modal: React.FC; export default Modal;