//#region extensions/crypto/src/commands/confirm-commands.d.ts /** * /approve and /deny commands — respond to plan step confirmations. * * When a plan step has `requireConfirmation: true`, the executor pauses * and asks the user. The user responds with /approve or /deny. */ declare const approveCommand: { name: string; description: string; acceptsArgs: boolean; requireAuth: boolean; handler: (ctx: any) => Promise<{ text: string; }>; }; declare const denyCommand: { name: string; description: string; acceptsArgs: boolean; requireAuth: boolean; handler: (ctx: any) => Promise<{ text: string; }>; }; //#endregion export { approveCommand, denyCommand }; //# sourceMappingURL=confirm-commands.d.mts.map