import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type TextResponseFormat = { type: "text"; }; /** @internal */ export declare const TextResponseFormat$inboundSchema: z.ZodType; /** @internal */ export type TextResponseFormat$Outbound = { type: "text"; }; /** @internal */ export declare const TextResponseFormat$outboundSchema: z.ZodType; export declare function textResponseFormatToJSON(textResponseFormat: TextResponseFormat): string; export declare function textResponseFormatFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=textresponseformat.d.ts.map