import type { NormalizedTrace } from "../../agent-traces/dist/index.js"; import type { ContextBreakdown } from "./types.js"; export interface ComputeContextBreakdownOptions { signal?: AbortSignal; mode?: "exact" | "estimated"; } export declare function computeContextBreakdown(trace: NormalizedTrace, options?: ComputeContextBreakdownOptions): Promise;