import * as z from "zod/v4"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ToolProperties = { readOnly: boolean | null; }; /** @internal */ export declare const ToolProperties$inboundSchema: z.ZodType; /** @internal */ export type ToolProperties$Outbound = { read_only: boolean | null; }; /** @internal */ export declare const ToolProperties$outboundSchema: z.ZodType; export declare function toolPropertiesToJSON(toolProperties: ToolProperties): string; export declare function toolPropertiesFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=toolproperties.d.ts.map