import type { TaskContext } from "./types.js"; export declare const DEFAULT_CONTEXT_TOKEN_BUDGET = 3000; export declare function applyContextBudget(context: TaskContext, tokenBudget?: number): TaskContext; export declare function estimateTokens(value: unknown): number;