import { z } from "zod"; import { BaseOutputParser } from "../schema/output_parser.js"; export declare class StructuredOutputParser extends BaseOutputParser> { schema: T; constructor(schema: T); static fromZodSchema(schema: T): StructuredOutputParser; static fromNamesAndDescriptions(schemas: S): StructuredOutputParser>; getFormatInstructions(): string; parse(text: string): Promise>; }