import type { DialectDefinition, InbandScanEvent, InbandScanner, InbandScannerOptions } from "./types"; /** * Scanner for the Gemma 4 token-delimited tool-calling convention (see * `docs/toolconv/gemma.md`). Each call is one `<|tool_call>call:NAME{…}` * block whose argument list is `key:value` pairs; string values are wrapped in * the `<|"|>` token rather than ASCII quotes, so splitting must skip those spans. */ export declare class GemmaInbandScanner implements InbandScanner { #private; constructor(options?: InbandScannerOptions); feed(text: string): InbandScanEvent[]; flush(): InbandScanEvent[]; } declare const definition: DialectDefinition; export default definition;