import type { ModalProps as AntdModalProps } from 'antd'; import type { ModalSize, ModalType } from './constant'; export interface ModalProps extends AntdModalProps { size?: ModalSize; type?: ModalType; okOnly?: boolean; noFooter?: boolean; } export declare const Modal: React.FC;