import { Fn } from '@c3/utils-1'; import React from 'react'; import { BaseProps } from '../Common'; export declare type ModalProps = Omit & { visible: boolean; closeBtn?: React.ReactElement; okBtn?: React.ReactElement; cancelBtn?: React.ReactElement; body: React.ReactElement; onCancel?: Fn; onOK?: Fn; showLoading?: boolean; loadingIcon?: JSX.Element; onClose?: Fn; maskProps?: BaseProps; }; export declare const Modal: React.FC;