export declare function isChina(region: string): boolean; export declare function fixedNumber(num: number): number; export declare function formatValue(value: number | string): string | number; export declare function genTableData(data: Array): Record[]; export declare function sortObj(obj: Record, sortKeyList: Array): Record; export declare function clusterChina(obj: Record): void; /** * [ * { * region: '巴西', * allCount: 100, * firstScreen: 1000, * [key]: value * }, * 'xx': { * // ... * } * ] */ export declare function parseResult(results: Array<{ [k: string]: any; }>): Record[]; export declare function genRUMnPerfData({ secretId, secretKey, id, startTime, endTime, type, }: { secretId: string; secretKey: string; id: string | number; startTime: number; endTime: number; type?: string; }): Promise[]>; export declare function genRUMPerfImgAndSend({ secretId, secretKey, id, startTime, endTime, type, title, chatId, webhookUrl, }: { secretId: string; secretKey: string; id: string | number; startTime: number; endTime: number; type?: string; title?: string; chatId: string; webhookUrl: string; }): Promise;