export type ModalProps = {
    open: boolean;
    onClose: () => void;
    children: React.ReactNode;
    title?: string;
    className?: string;
    width?: string;
};
export declare const Modal: ({ open, onClose, title, children, className, width }: ModalProps) => import("react/jsx-runtime").JSX.Element | null;
export default Modal;
