import { ModalFooter as InnerModalFooter } from './footer'; import { Modal as InnerModal } from './modal'; type CompoundedComponent = typeof InnerModal & { Footer: typeof InnerModalFooter; }; export declare const Modal: CompoundedComponent; export type { ModalProps } from './modal'; export type { ModalSize, ModalType } from './constant'; export * from './hooks/use-modal';