/** * Capsule declaration wrapping TokenBuffer as a stateMachine. * Proves the factory kernel against a stateful LLM-token primitive * with bounded-allocation discipline. * * @module */ /** * Declared capsule for TokenBuffer. Registered in the module-level * catalog at import time; walked by the factory compiler. */ export declare const tokenBufferCapsule: import("../assembly.js").CapsuleDef<"stateMachine", { readonly _tag: "push"; readonly token: string; } | { readonly _tag: "flush"; } | { readonly _tag: "reset"; }, { readonly phase: "idle" | "buffering" | "draining"; readonly tokens: readonly string[]; readonly totalBytes: number; }, unknown>; //# sourceMappingURL=token-buffer.d.ts.map