import { ModalProps } from '@chakra-ui/react'; import { FC } from 'react'; export interface ModalDialogProps extends ModalProps { title?: string; showCloseButton?: boolean; maxWidth?: string | number | (string | number)[]; } /** * Wraps Chakra Modal {@link https://chakra-ui.com/docs/components/modal} * with a simpler API */ export declare const ModalDialog: FC;