import * as z from "zod/v4"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type Arguments = { [k: string]: any; } | string; export type FunctionCall = { name: string; arguments: { [k: string]: any; } | string; }; /** @internal */ export declare const Arguments$inboundSchema: z.ZodType; /** @internal */ export type Arguments$Outbound = { [k: string]: any; } | string; /** @internal */ export declare const Arguments$outboundSchema: z.ZodType; export declare function argumentsToJSON(value: Arguments): string; export declare function argumentsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const FunctionCall$inboundSchema: z.ZodType; /** @internal */ export type FunctionCall$Outbound = { name: string; arguments: { [k: string]: any; } | string; }; /** @internal */ export declare const FunctionCall$outboundSchema: z.ZodType; export declare function functionCallToJSON(functionCall: FunctionCall): string; export declare function functionCallFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=functioncall.d.ts.map