export declare function getUrlParam(name: string, url?: string): string; export declare const getTimestamp: (dateTime: string) => number; export declare const timeFormat: (dateTime: string, format: string) => string; export declare const languageIntroduce: (list: never[] | undefined, type: any) => { introduction: string; name: string; languageType: string; }; export declare function getTime(date: any, withSecond?: boolean): string; export declare function uuid(): string; /** 将base64转换为文件对象 * @param {String} base64 base64字符串 * @param type * */ export declare function b64toBlob(base64: string, type?: string): Blob; /** 深拷貝 * @param obj * */ export declare function deepCopy(obj: any): any; export declare function getLangType(): any; export declare function isObject(obj: any): boolean; export declare function isJsonString(str: string): boolean; export declare function JsonParse(data: any): any;