export declare function getRUMPerformance({ secretId, secretKey, id, startTime, endTime, type, }: {
    secretId: string;
    secretKey: string;
    id: string | number;
    startTime: string | number;
    endTime: string | number;
    type: string;
}): Promise<any>;
