import type { IFileSystemSync } from '@file-services/types'; import type { INpmPackage } from '@dazl/resolve-directory-context'; export declare function scopeToPackage(packageName: string, entityName: string): string; /** * Removes package scope (e.g `@scope`) and posfix `-feature`. */ export declare function simplifyPackageName(name: string): string; export interface IPackageDescriptor { simplifiedName: string; directoryPath: string; name: string; } export declare function findPackageOfDirs(featureDirs: Iterable, fs: IFileSystemSync, npmPackages: INpmPackage[]): Map; export declare function findPackageJson(fs: IFileSystemSync, featureDirectoryPath: string): string; //# sourceMappingURL=package-utils.d.ts.map