import type { BaseOutputParser, StructuredOutput } from "../types.js"; export type Answer = { choice: number; reason: string; }; export declare class SelectionOutputParser implements BaseOutputParser> { /** * * @param output */ parse(output: string): StructuredOutput; format(output: string): string; }