/** * Filesystem walker for source-code reconstruction. * Skips test files, build artifacts, documentation, and examples. */ export declare function shouldExclude(relPath: string, extraPatterns?: string[]): boolean; export type ScannedFile = { relPath: string; content: string; }; export declare function walkFiles(rootDir: string, extensions: string[], extraExclude?: string[]): Promise; //# sourceMappingURL=file-walker.d.ts.map