import React from 'react'; import ModalTitle from './modal-title'; import ModalSubtitle from './modal-subtitle'; import ModalContent from './modal-content'; import ModalAction from './modal-action'; interface Props { disableBackdropClick?: boolean; onClose?: () => void; onOpen?: () => void; open?: boolean; width?: string; wrapClassName?: string; } declare const defaultProps: { width: string; wrapClassName: string; disableBackdropClick: boolean; }; type NativeAttrs = Omit, keyof Props>; export type ModalProps = Props & typeof defaultProps & NativeAttrs; type ModalComponent

= React.FC

& { Title: typeof ModalTitle; Subtitle: typeof ModalSubtitle; Content: typeof ModalContent; Action: typeof ModalAction; }; type ComponentProps = Partial & Omit & NativeAttrs; declare const _default: ModalComponent; export default _default;