import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ToolsCallResponse = { /** * The raw response from the tool */ rawResponse?: { [k: string]: any; } | undefined; /** * The error message if applicable */ error?: string | undefined; }; /** @internal */ export declare const ToolsCallResponse$inboundSchema: z.ZodType; export declare function toolsCallResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=toolscallresponse.d.ts.map