import { default as React } from 'react'; import { ModalFuncProps, ModalProps } from 'antd'; import { BaseComponentProps } from '../../typings'; export interface OnChainModalProps extends BaseComponentProps, ModalProps { modalTitle: any; visible: boolean; okText?: string; /** * 彩色进度条的进度 0-1 ,空则不显示 */ progressPercent?: number; styleUnify?: boolean; } export declare const confirm: any; export declare function confirmModalConfig(params: { title: any; content: any; onOk: () => any; onCancel?: () => any; isShowBtnIcon?: boolean; } & ModalFuncProps): ModalFuncProps; declare const OnChainModal: React.FC; export default OnChainModal;