/** Tool names that execute automatically without prompting the user. */ export declare const AUTO_APPROVE_TOOLS: ReadonlySet; export type ApprovalDecision = "auto" | "ask"; /** Returns 'auto' for read-only tools, 'ask' for everything else. */ export declare function decide(toolName: string): ApprovalDecision;