import { type RuntimeTreeEntry } from "./service-migration-runtime-tree-scan.js"; export interface LegacyRuntimeRoot { source: string; excludedPaths: string[]; } /** 在单一 fs 镜像中保留原路径关系,不复制链接目标或扫描未选择的祖先内容。 */ export declare function scanLegacyRuntimeForest(roots: LegacyRuntimeRoot[]): Promise<{ entries: RuntimeTreeEntry[]; files: Map; }>; //# sourceMappingURL=service-migration-runtime-forest-scan.d.ts.map