import { LlmIR } from "./llm-ir.ts"; export declare function countIRTokens(ir: LlmIR[]): number; export type WindowedIR = { appliedWindow: boolean; ir: LlmIR[]; }; export declare function applyContextWindow(ir: LlmIR[], context: number): WindowedIR;