import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { ResponseFormat, ResponseFormat$Outbound } from "./responseformat.js"; export declare const Verbosity: { readonly Low: "low"; readonly Medium: "medium"; readonly High: "high"; }; export type Verbosity = ClosedEnum; export type TextConfiguration = { format: ResponseFormat; verbosity?: Verbosity | undefined; }; /** @internal */ export declare const Verbosity$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const Verbosity$outboundSchema: z.ZodNativeEnum; /** @internal */ export declare const TextConfiguration$inboundSchema: z.ZodType; /** @internal */ export type TextConfiguration$Outbound = { format: ResponseFormat$Outbound; verbosity: string; }; /** @internal */ export declare const TextConfiguration$outboundSchema: z.ZodType; export declare function textConfigurationToJSON(textConfiguration: TextConfiguration): string; export declare function textConfigurationFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=textconfiguration.d.ts.map