import { ICommand } from '../CommandProcessor.js'; import { Logger } from '../../Logger.js'; /** * Show command history */ export declare class HistoryCommand implements ICommand { name: string; description: string; usage: string; category: string; aliases: string[]; execute(args: string, logger: Logger): void; } /** * Clear command history */ export declare class ClearHistoryCommand implements ICommand { name: string; description: string; usage: string; category: string; aliases: string[]; execute(args: string, logger: Logger): void; } /** * Interactive mode command */ export declare class InteractiveCommand implements ICommand { name: string; description: string; usage: string; category: string; aliases: string[]; execute(args: string, logger: Logger): void; } /** * Plugin management command */ export declare class PluginsCommand implements ICommand { name: string; description: string; usage: string; category: string; aliases: string[]; execute(args: string, logger: Logger): void; } //# sourceMappingURL=HistoryCommand.d.ts.map