import type { RawRumEvent } from '@openobserve/browser-rum-core'; import type { RelativeTime } from '@openobserve/browser-core'; /** * Store the Long Task ID in the registry for the Profiler to link it with the corresponding Profile. * * @param options - The options for the function * @param options.rawRumEvent - The Raw RUM event * @param options.startTime - The start time of the event (in this case the Long Task Performance Entry start time) */ export declare function mayStoreLongTaskIdForProfilerCorrelation({ rawRumEvent, startTime, }: { rawRumEvent: RawRumEvent; startTime: RelativeTime; }): void;