/** * Scan command - Run comprehensive AI-readiness analysis using the tool registry */ import { Command } from 'commander'; import { type ScanOptions } from './scan-helpers'; /** * CLI action handler for the "scan" command. * Runs a comprehensive AI-readiness analysis across multiple tools. * * @param directory - The directory to analyze (defaults to ".") * @param options - CLI options from commander */ export declare function scanAction( directory: string, options: ScanOptions ): Promise; export declare const SCAN_HELP_TEXT: string; /** * Define the scan command. */ export declare function defineScanCommand(program: Command): void; //# sourceMappingURL=scan.d.ts.map