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