import type { AutoPermissionReview } from "./parseAutoPermissionReview.js"; /** * What the agent is told when Auto refuses an action. * * The refusal is addressed to the agent rather than to the user, because Auto decides on the * user's behalf and never interrupts them. The agent is expected to find a safer route or to * stop and explain itself; if the user then approves the action in their own words, that reply * becomes real authorization and the next review can allow it. */ export declare function describeAutoPermissionDenial(action: string, review: AutoPermissionReview): string;