/// import { message } from 'antd'; import ProgressComp from './ProgressComp'; import { LocaleFunction } from '@lingxiteam/types'; declare const openProgress: (percent: number, restProps?: any) => JSX.Element; declare const openProgressMsg: (key: string, fileName: string, percentComplete: number, text: string, { getLocale }: { getLocale: LocaleFunction; }) => void; declare const closeProgressMsg: (key: any) => void; declare const showFailMsg: (key: string, content: string) => void; declare const showProgressNotification: (config: { showLoading?: false | undefined; percent: number; onCancel: () => void; message?: any; key: string; title?: any; type?: "error" | "success" | "process" | undefined; btn: (onCancel: () => void) => any; loadingText?: string | undefined; getLocale: LocaleFunction; } & NotificationAction) => void; declare const closeProgressNotification: (key: any) => void; export default ProgressComp; export { openProgress, openProgressMsg, closeProgressMsg, showFailMsg, showProgressNotification, closeProgressNotification };