import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Status } from "./status.js"; /** * Function call output item: The output payload returned from a function tool call. */ export type FunctionToolCallOutput = { type: "function_call_output"; callId: string; output: string; id?: string | undefined; /** * The processing status of an individual item. 'in_progress' means currently processing, 'completed' means finished successfully, 'incomplete' means processing stopped before completion. */ status?: Status | undefined; }; /** @internal */ export declare const FunctionToolCallOutput$inboundSchema: z.ZodType; /** @internal */ export type FunctionToolCallOutput$Outbound = { type: "function_call_output"; call_id: string; output: string; id?: string | undefined; status?: string | undefined; }; /** @internal */ export declare const FunctionToolCallOutput$outboundSchema: z.ZodType; export declare function functionToolCallOutputToJSON(functionToolCallOutput: FunctionToolCallOutput): string; export declare function functionToolCallOutputFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=functiontoolcalloutput.d.ts.map