import { ReactNode } from 'react'; declare type Props = { width?: string; control: boolean; padding?: string; children: ReactNode; close: (v: boolean) => void; }; export default function Modal({ close, control, children, padding, width }: Props): JSX.Element; export {}; //# sourceMappingURL=Modal.d.ts.map