import { HTMLAttributes, FC } from 'react';
import './Modal.css';
declare type ModalProps = {
width?: number;
onClose: () => void;
open: boolean;
className?: string;
content?: any;
children?: any;
useBackdrop?: boolean;
} & HTMLAttributes;
export declare const Modal: FC;
export {};