import { BaseOutputParser } from "../schema/output_parser.js"; /** * Class to parse the output of an LLM call to a list. * @augments BaseOutputParser */ export declare abstract class ListOutputParser extends BaseOutputParser { } /** * Class to parse the output of an LLM call as a comma-separated list. * @augments ListOutputParser */ export declare class CommaSeparatedListOutputParser extends ListOutputParser { parse(text: string): Promise; getFormatInstructions(): string; }