import type { RumProfilerTrace } from '../types'; export interface ProfileEventAttributes { application: { id: string; }; session?: { id: string; }; view?: { id: string[]; name: string[]; }; long_task?: { id: string[]; }; } /** * Builds attributes for the Profile Event. * * @param profilerTrace - Profiler trace * @param applicationId - application id. * @param sessionId - session id. * @returns Additional attributes. */ export declare function buildProfileEventAttributes(profilerTrace: RumProfilerTrace, applicationId: string, sessionId: string | undefined): ProfileEventAttributes;