import * as z from "zod/v4"; import * as discriminatedUnionTypes from "../types/discriminatedUnion.js"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; import { FileCitation, FileCitation$Outbound } from "./filecitation.js"; import { FilePath, FilePath$Outbound } from "./filepath.js"; import { URLCitation, URLCitation$Outbound } from "./urlcitation.js"; export type OpenAIResponsesAnnotation = FileCitation | URLCitation | FilePath | discriminatedUnionTypes.Unknown<"type">; /** @internal */ export declare const OpenAIResponsesAnnotation$inboundSchema: z.ZodType; /** @internal */ export type OpenAIResponsesAnnotation$Outbound = FileCitation$Outbound | URLCitation$Outbound | FilePath$Outbound; /** @internal */ export declare const OpenAIResponsesAnnotation$outboundSchema: z.ZodType; export declare function openAIResponsesAnnotationToJSON(openAIResponsesAnnotation: OpenAIResponsesAnnotation): string; export declare function openAIResponsesAnnotationFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=openairesponsesannotation.d.ts.map