import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Custom tool call output item: The output payload returned by a custom tool call. */ export type CustomToolCallOutputWithId = { type: "custom_tool_call_output"; callId: string; output: string; /** * The unique ID of the message. */ id: string; /** * The ID of the response that created this item, if any. */ responseId?: string | null | undefined; /** * Metadata from the response that created this item, if any. */ metadata?: { [k: string]: string; } | null | undefined; }; /** @internal */ export declare const CustomToolCallOutputWithId$inboundSchema: z.ZodType; /** @internal */ export type CustomToolCallOutputWithId$Outbound = { type: "custom_tool_call_output"; call_id: string; output: string; id: string; response_id?: string | null | undefined; metadata?: { [k: string]: string; } | null | undefined; }; /** @internal */ export declare const CustomToolCallOutputWithId$outboundSchema: z.ZodType; export declare function customToolCallOutputWithIdToJSON(customToolCallOutputWithId: CustomToolCallOutputWithId): string; export declare function customToolCallOutputWithIdFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=customtoolcalloutputwithid.d.ts.map