import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type MCPToolFilter = { readOnly?: boolean | undefined; toolNames?: Array | undefined; }; /** @internal */ export declare const MCPToolFilter$inboundSchema: z.ZodType; /** @internal */ export type MCPToolFilter$Outbound = { read_only?: boolean | undefined; tool_names?: Array | undefined; }; /** @internal */ export declare const MCPToolFilter$outboundSchema: z.ZodType; export declare function mcpToolFilterToJSON(mcpToolFilter: MCPToolFilter): string; export declare function mcpToolFilterFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=mcptoolfilter.d.ts.map