/** * Report Command - drift report * * Generate reports in various formats. * * MIGRATION: Now uses IPatternService for pattern operations. * * @requirements 29.7 */ import { Command } from 'commander'; export interface ReportOptions { /** Output format */ format?: 'text' | 'json' | 'github' | 'gitlab'; /** Output file path */ output?: string; /** Include only specific categories */ categories?: string[]; /** Enable verbose output */ verbose?: boolean; } export declare const reportCommand: Command; //# sourceMappingURL=report.d.ts.map