import { ILocalDependencies } from './DependencyTypes'; export declare class LocalDependencies { private parserMap; private listFilePattern; constructor(); filterFiles(files: Array): Array; /** * @param basePath - Scan root directory. Limits the scope of upward directory searches within parsers. */ search(files: Array, basePath?: string): Promise; stringMatchWithWildcard(text: string, pattern: string): boolean; private getParserFunc; }