import type { Command } from 'commander'; export interface MessageSearchCliInput { before?: string; channel?: string; keywords: string[]; limit?: number; since?: string; } export declare function registerMessageHistoryCommands(program: Command): void; export declare function runMessageSearch(opts: MessageSearchCliInput): Promise; //# sourceMappingURL=message-history-cli.d.ts.map