/// import Action from './action'; import Header from './header'; import Content from './content'; import { ModalProps } from './type'; interface ModalInterface { (props: ModalProps): JSX.Element; Action: typeof Action; Header: typeof Header; Content: typeof Content; } declare const Modal: ModalInterface; export default Modal;