export type AgentContext = Record; export declare const createAgentContext: (..._args: unknown[]) => Record; export declare const lookupContextTokens: (..._args: unknown[]) => number; export declare const resolveContextTokensForModel: (..._args: unknown[]) => number; /** * Runtime attestation (ADR 0005 H9). Declares the implementation status * of each runtime export in this module. See CONTRIBUTING.md ยง Module * attestations for the category definitions and the convention for * updating these when sync or rebrand changes the surface. */ export declare const MODULE_ATTESTATIONS: { readonly createAgentContext: "partial"; readonly lookupContextTokens: "partial"; readonly resolveContextTokensForModel: "partial"; };