import * as React from 'react'; import './style/index.less'; interface ModalProps { children: React.ReactNode; width: string | number; top: string; maskBackground: string; background: string; isHeader: boolean; isFooter: boolean; title: React.ReactNode; okText: string; cancelText: string; headerVertical: 'left' | 'center'; footerVertical: 'left' | 'center' | 'right'; closable: boolean; closeIcon: React.ReactNode; visible: boolean; footer: React.ReactNode; className: string; maskClosable: boolean; onOk: () => void; onCancel: () => void; } declare const Modal: React.FC>; export default Modal;