import type { ModalProps } from './types'; import { ModalAlert } from './ModalAlert'; import { ModalFooter } from './ModalFooter'; import { ModalHeader } from './ModalHeader'; export declare const Modal: { (props: ModalProps): React.ReactElement | null; Header: typeof ModalHeader; Footer: typeof ModalFooter; Alert: typeof ModalAlert; };