export interface ScannedFile { readonly relativePath: string; readonly absolutePath: string; readonly sizeBytes: number; } export declare function scanFileTree(workspaceRoot: string): Promise; export declare function languageForPath(relativePath: string): string | undefined; export declare function isTestPath(relativePath: string): boolean; export declare function isDocPath(relativePath: string): boolean; //# sourceMappingURL=file-tree-scanner.d.ts.map