/// export interface IModal { visible?: boolean; onOk?: any; onClose?: any; children?: any; } /** * H5端 模态框 */ export declare function Modal(props?: IModal): JSX.Element;