export declare class ChoiceGrammarError extends Error { constructor(message: string); } export declare function compileChoiceGrammar(choices: readonly string[]): string; export declare function parseChoiceOutput(raw: string, choices: readonly string[]): string | null;