export {}; export { default as EmptyUtils } from './emptyUtils'; export declare const exportTemplateFile: (url: any, params: any) => void; export declare const exportTemplate: (templateId: any, params: any) => void; export declare const exportTemplateThread: (templateId: any, params: any) => void; export declare const downloadTemplate: (templateId: any) => void; export declare const downloadFile: (url: string) => Promise<{}>; /** * 时间格式化 */ export declare const timeFormat: (value: any, formatType: any) => any; /** * 截取字符串 * @param {String} str 原字符串 * @param {String} length 需要显示的长度 * @param {String} suffix 后缀 */ export declare const splitString: (str: any, length: any, suffix: any) => any; export declare function isUrl(path: any): boolean; export declare function getPageQuery(): any; export declare function getQueryPath(path?: string, query?: {}): string; /** * 操作返回信息 */ export declare function operationCallback(result: any): void; export declare const debounce: (fn: any, wait?: number) => () => void;