import * as z from "zod/v4"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ToolConfiguration = { exclude?: Array | null | undefined; include?: Array | null | undefined; requiresConfirmation?: Array | null | undefined; }; /** @internal */ export declare const ToolConfiguration$inboundSchema: z.ZodType; /** @internal */ export type ToolConfiguration$Outbound = { exclude?: Array | null | undefined; include?: Array | null | undefined; requires_confirmation?: Array | null | undefined; }; /** @internal */ export declare const ToolConfiguration$outboundSchema: z.ZodType; export declare function toolConfigurationToJSON(toolConfiguration: ToolConfiguration): string; export declare function toolConfigurationFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=toolconfiguration.d.ts.map