export declare function genRUMnPerfData({ secretId, secretKey, id, startTime, endTime, type, }: {
    secretId: string;
    secretKey: string;
    id: string | number;
    startTime: number;
    endTime: number;
    type?: string;
}): Promise<Record<string, any>[]>;
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<void>;
