import { Command } from 'commander'; import type { BotOption } from './shared.js'; interface ActionResult { success?: boolean; error?: string; channel?: string; messageId?: string; emoji?: string; } export declare function addAction(channel: string, messageId: string, emoji: string, options: BotOption): Promise; export declare function removeAction(channel: string, messageId: string, emoji: string, options: BotOption): Promise; export declare const reactionCommand: Command; export {}; //# sourceMappingURL=reaction.d.ts.map