/** * Project Scanner - Discovers and analyzes projects */ import { ProjectInfo, ScanOptions } from '../types/index.js'; /** * Extended scan options with onlyPaths support */ interface ExtendedScanOptions extends Partial { /** If provided, only scan these specific paths (for quick/incremental scan) */ onlyPaths?: string[]; } /** * Scan a directory for projects and extract information */ export declare function scanProjects(options?: ExtendedScanOptions): Promise; export {};