import type { DialectDefinition, InbandScanEvent, InbandScanner, InbandScannerOptions } from "./types"; export declare const KIMI_SECTION_BEGIN = "<|tool_calls_section_begin|>"; export declare const KIMI_SECTION_END = "<|tool_calls_section_end|>"; export declare const KIMI_CALL_BEGIN = "<|tool_call_begin|>"; export declare const KIMI_CALL_END = "<|tool_call_end|>"; export declare const KIMI_ARG_BEGIN = "<|tool_call_argument_begin|>"; export declare class KimiInbandScanner implements InbandScanner { #private; constructor(options?: InbandScannerOptions); feed(text: string): InbandScanEvent[]; flush(): InbandScanEvent[]; } declare const definition: DialectDefinition; export default definition;