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; }; declare type NativeAttrs = Omit, keyof Props>; export declare type ModalProps = Props & typeof defaultProps & NativeAttrs; declare type ModalComponent

= React.FC

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