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 CustomToolCallOutput = { type: "custom_tool_call_output"; callId: string; output: string; id?: string | undefined; }; /** @internal */ export declare const CustomToolCallOutput$inboundSchema: z.ZodType; /** @internal */ export type CustomToolCallOutput$Outbound = { type: "custom_tool_call_output"; call_id: string; output: string; id?: string | undefined; }; /** @internal */ export declare const CustomToolCallOutput$outboundSchema: z.ZodType; export declare function customToolCallOutputToJSON(customToolCallOutput: CustomToolCallOutput): string; export declare function customToolCallOutputFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=customtoolcalloutput.d.ts.map