import * as z from "zod/v4"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; import { OpenAIResponsesAnnotation, OpenAIResponsesAnnotation$Outbound } from "./openairesponsesannotation.js"; export type ResponseOutputTextTopLogprob = { bytes: Array; logprob: number; token: string; }; export type Logprob = { bytes: Array; logprob: number; token: string; topLogprobs: Array; }; export type ResponseOutputText = { annotations?: Array | undefined; logprobs?: Array | undefined; text: string; type: "output_text"; }; /** @internal */ export declare const ResponseOutputTextTopLogprob$inboundSchema: z.ZodType; /** @internal */ export type ResponseOutputTextTopLogprob$Outbound = { bytes: Array; logprob: number; token: string; }; /** @internal */ export declare const ResponseOutputTextTopLogprob$outboundSchema: z.ZodType; export declare function responseOutputTextTopLogprobToJSON(responseOutputTextTopLogprob: ResponseOutputTextTopLogprob): string; export declare function responseOutputTextTopLogprobFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Logprob$inboundSchema: z.ZodType; /** @internal */ export type Logprob$Outbound = { bytes: Array; logprob: number; token: string; top_logprobs: Array; }; /** @internal */ export declare const Logprob$outboundSchema: z.ZodType; export declare function logprobToJSON(logprob: Logprob): string; export declare function logprobFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const ResponseOutputText$inboundSchema: z.ZodType; /** @internal */ export type ResponseOutputText$Outbound = { annotations?: Array | undefined; logprobs?: Array | undefined; text: string; type: "output_text"; }; /** @internal */ export declare const ResponseOutputText$outboundSchema: z.ZodType; export declare function responseOutputTextToJSON(responseOutputText: ResponseOutputText): string; export declare function responseOutputTextFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=responseoutputtext.d.ts.map