export interface WalkOptions { readonly rootPath: string; readonly concurrency?: number; readonly maxFileSize?: number; readonly followSymlinks?: boolean; readonly scanTests?: boolean; readonly excludeGlobs?: ReadonlyArray; readonly includeGlobs?: ReadonlyArray; } export interface WalkResult { readonly files: ReadonlyArray; readonly skipped_count: number; readonly total_files_count: number; readonly parsed_files_count_estimate: number; readonly oversized_count: number; readonly symlink_count: number; readonly test_excluded_count: number; } export declare function walkProject(options: WalkOptions): Promise; //# sourceMappingURL=index.d.ts.map