import { FC, Dispatch, SetStateAction, ReactNode } from 'react'; interface ModalWithStateProps { setShow: Dispatch>; children: ReactNode; title: string; width?: string | number; maxWidth?: 'md' | 'lg' | 'xl' | '2xl' | '3xl' | '4xl'; } declare const ModalWithState: FC; export default ModalWithState;