/** * Scan Command * Detect icon libraries and collect usage statistics */ interface ScanOptions { root: string; include: string[]; exclude: string[]; config?: string; report: 'text' | 'json' | 'md'; output?: string; verbose: boolean; } export declare function scanCommand(options: ScanOptions): Promise; export {}; //# sourceMappingURL=scan.d.ts.map