import { ModuleConfig } from '../../config/module-config'; import { FsPath } from '../../file-info/fs-path'; /** * The current criterion for finding modules is via * the SheriffConfig's property `modules`. * * We will traverse the filesystem and match directories * against the patterns. */ export declare function findModulePathsWithoutBarrel(moduleConfig: ModuleConfig, rootDir: FsPath, barrelFileName: string): Set;