import { ICommand } from '../CommandProcessor.js'; import { Logger } from '../../Logger.js'; /** * Status command - show logger configuration and statistics */ export declare class StatusCommand implements ICommand { name: string; description: string; usage: string; execute(_args: string, logger: Logger): void; } /** * Reset command - reset logger to defaults */ export declare class ResetCommand implements ICommand { name: string; description: string; usage: string; execute(_args: string, logger: Logger): void; } /** * Demo command - show logger feature demonstration */ export declare class DemoCommand implements ICommand { name: string; description: string; usage: string; execute(_args: string, logger: Logger): void; } //# sourceMappingURL=StatusCommand.d.ts.map