import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type Tool = { type: "retrieve"; partitions: Array; }; /** @internal */ export declare const Tool$inboundSchema: z.ZodType; /** @internal */ export type Tool$Outbound = { type: "retrieve"; partitions: Array; }; /** @internal */ export declare const Tool$outboundSchema: z.ZodType; export declare function toolToJSON(tool: Tool): string; export declare function toolFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=tool.d.ts.map