import { PackageManagerType } from "./package-manager/PackageManagerType";
export { PackageManagerType } from "./package-manager/PackageManagerType";
export declare class PackageManagerService {
    private constructor();
    static detectPackageManager(dirPath: string): PackageManagerType;
    static addDevPackage(packageName: string, dirPath: string): Promise<void>;
    static isMonorepo(dirPath: string): Promise<boolean>;
    static isPackageInstalled(packageName: string, dirPath: string): Promise<boolean>;
    static getNodeModulesPath(dirPath: string): Promise<string>;
    private static getAdapter;
}
