import * as z from "zod/v4"; import { ClosedEnum } from "../../types/enums.js"; export declare const Confirmation: { readonly Allow: "allow"; readonly Deny: "deny"; }; export type Confirmation = ClosedEnum; export type ToolCallConfirmation = { toolCallId: string; confirmation: Confirmation; }; /** @internal */ export declare const Confirmation$outboundSchema: z.ZodEnum; /** @internal */ export type ToolCallConfirmation$Outbound = { tool_call_id: string; confirmation: string; }; /** @internal */ export declare const ToolCallConfirmation$outboundSchema: z.ZodType; export declare function toolCallConfirmationToJSON(toolCallConfirmation: ToolCallConfirmation): string; //# sourceMappingURL=toolcallconfirmation.d.ts.map