//#region extensions/crypto/src/commands/interrupt-command.d.ts /** * Interrupt commands — cancel ongoing operations. * * /interrupt — Cancel the current LLM generation (suppresses response) * /interrupt_plan — Cancel the currently executing plan */ declare const interruptCommand: { name: string; description: string; acceptsArgs: boolean; requireAuth: boolean; handler: (ctx?: any) => Promise<{ text: string; }>; }; declare const interruptPlanCommand: { name: string; description: string; acceptsArgs: boolean; requireAuth: boolean; handler: (ctx?: any) => Promise<{ text: string; }>; }; //#endregion export { interruptCommand, interruptPlanCommand }; //# sourceMappingURL=interrupt-command.d.mts.map