import type * as Protocol from '../../../generated/protocol.js'; import type * as Handlers from '../handlers/handlers.js'; import * as Types from '../types/types.js'; export declare const stackTraceForEventInTrace: Map>, Map>; export declare function clearCacheForTrace(parsedTrace: Handlers.Types.ParsedTrace): void; /** * This util builds a stack trace that includes async calls for a given * event. It leverages data we collect from sampling to deduce sync * stacks and trace event instrumentation on the V8 debugger to stitch * them together. */ export declare function get(event: Types.Events.Event, parsedTrace: Handlers.Types.ParsedTrace): Protocol.Runtime.StackTrace | null;