import * as z from "zod/v4"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { LogicalExpression } from "./logicalexpression.js"; import { ToolProperties } from "./toolproperties.js"; export type RequiresConfirmation = LogicalExpression | ToolProperties | Array; export type SkipConfirmation = LogicalExpression | ToolProperties | Array; export type ToolExecutionConfiguration = { requiresConfirmation?: LogicalExpression | ToolProperties | Array | null | undefined; skipConfirmation?: LogicalExpression | ToolProperties | Array | null | undefined; include?: Array | null | undefined; exclude?: Array | null | undefined; }; /** @internal */ export declare const RequiresConfirmation$inboundSchema: z.ZodType; export declare function requiresConfirmationFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const SkipConfirmation$inboundSchema: z.ZodType; export declare function skipConfirmationFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const ToolExecutionConfiguration$inboundSchema: z.ZodType; export declare function toolExecutionConfigurationFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=toolexecutionconfiguration.d.ts.map