/** * @fileoverview Status and demo commands for Advanced Logger CLI */ import type { ICommand } from '../CommandProcessor.js'; import type { 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=ExportCommand.d.ts.map