//#region extensions/crypto/src/commands/plans-command.d.ts /** * /plans command — list and manage scheduled plans via tappable Telegram commands. * * Sub-commands: * /plans — show all plans with status * /plans_active — show only active (scheduled/running) plans * /plans_cancel — show cancellable plans with IDs * /plans_clear — cancel all active plans */ declare const plansCommand: { name: string; description: string; acceptsArgs: boolean; requireAuth: boolean; handler: () => Promise<{ text: string; }>; }; declare const plansActiveCommand: { name: string; description: string; acceptsArgs: boolean; requireAuth: boolean; handler: () => Promise<{ text: string; }>; }; declare const plansCancelCommand: { name: string; description: string; acceptsArgs: boolean; requireAuth: boolean; handler: (ctx: any) => Promise<{ text: string; }>; }; declare const plansClearCommand: { name: string; description: string; acceptsArgs: boolean; requireAuth: boolean; handler: () => Promise<{ text: string; }>; }; //#endregion export { plansActiveCommand, plansCancelCommand, plansClearCommand, plansCommand }; //# sourceMappingURL=plans-command.d.mts.map