import { BaseTransformOutputParser } from "./transform.js"; //#region src/output_parsers/bytes.d.ts /** * OutputParser that parses LLMResult into the top likely string and * encodes it into bytes. */ declare class BytesOutputParser extends BaseTransformOutputParser { static lc_name(): string; lc_namespace: string[]; lc_serializable: boolean; protected textEncoder: InstanceType; parse(text: string): Promise; getFormatInstructions(): string; } //#endregion export { BytesOutputParser }; //# sourceMappingURL=bytes.d.ts.map