import type { AgentHistoryRecord } from "@/types"; /** * Estimates token usage from history records using a symbols/4 heuristic. * Expects: records are ordered and contain valid user/assistant/tool entries. */ export declare function contextEstimateTokens(records: AgentHistoryRecord[]): number; //# sourceMappingURL=contextEstimateTokens.d.ts.map