import { FsPath } from '../file-info/fs-path'; import { Configuration } from '../config/configuration'; export type ModulePathMap = Record; /** * Find module paths which can be defined via having a barrel file or the * configuration's property `modules`. * * If a module has a barrel file and an internal, it is of type barrel file. */ export declare function findModulePaths(projectDirs: FsPath[], rootDir: FsPath, sheriffConfig: Configuration): ModulePathMap;