/** * @module tools/repo/scan * @packageBoundary @qulib/core (candidate: @qulib/analyzer) * * This module performs static analysis of a repository's file structure. * It is currently embedded in @qulib/core because repo scanning is part of * the observe phase and @qulib/core is the only consumer. * * Extraction to @qulib/analyzer is appropriate when: * 1. A consumer needs repo analysis without URL crawling * 2. The module grows to include PRD/Jira/Confluence ingestion * 3. A standalone CLI command `qulib analyze-repo` is needed * * Before extraction: ensure RepoAnalysis schema is re-exported from @qulib/analyzer * and @qulib/core depends on @qulib/analyzer (not the reverse). */ import { type RepoAnalysis } from '../../schemas/repo-analysis.schema.js'; export declare function scanRepo(repoPath: string): Promise; //# sourceMappingURL=scan.d.ts.map