//#region extensions/crypto/src/commands/forum-commands.d.ts /** * Forum Topic commands — manage Telegram threaded mode topics. * * /topics — List registered topics and their bindings * /topics_setup — Set up suggested topic structure * /topic_bind — Bind a topic to a persona/mode configuration * /topic_unbind — Remove a topic binding */ declare const topicsCommand: { name: string; description: string; acceptsArgs: boolean; requireAuth: boolean; handler: (ctx: any) => Promise<{ text: string; }>; }; declare const topicsSetupCommand: { name: string; description: string; acceptsArgs: boolean; requireAuth: boolean; handler: (ctx: any) => Promise<{ text: string; }>; }; declare const topicBindCommand: { name: string; description: string; acceptsArgs: boolean; requireAuth: boolean; handler: (ctx: any) => Promise<{ text: string; }>; }; declare const topicUnbindCommand: { name: string; description: string; acceptsArgs: boolean; requireAuth: boolean; handler: (ctx: any) => Promise<{ text: string; }>; }; //#endregion export { topicBindCommand, topicUnbindCommand, topicsCommand, topicsSetupCommand }; //# sourceMappingURL=forum-commands.d.mts.map