1*8d3f3824SCedric van Puttenimport { BasePackageManager } from './BasePackageManager';
2*8d3f3824SCedric van Puttenexport declare class PnpmPackageManager extends BasePackageManager {
3*8d3f3824SCedric van Putten    readonly name = "pnpm";
4*8d3f3824SCedric van Putten    readonly bin = "pnpm";
5*8d3f3824SCedric van Putten    readonly lockFile = "pnpm-lock.yaml";
6*8d3f3824SCedric van Putten    workspaceRoot(): PnpmPackageManager | null;
7*8d3f3824SCedric van Putten    installAsync(namesOrFlags?: string[]): import("@expo/spawn-async").SpawnPromise<import("@expo/spawn-async").SpawnResult>;
8*8d3f3824SCedric van Putten    addAsync(namesOrFlags?: string[]): import("@expo/spawn-async").SpawnPromise<import("@expo/spawn-async").SpawnResult>;
9*8d3f3824SCedric van Putten    addDevAsync(namesOrFlags?: string[]): import("@expo/spawn-async").SpawnPromise<import("@expo/spawn-async").SpawnResult>;
10*8d3f3824SCedric van Putten    addGlobalAsync(namesOrFlags?: string[]): import("@expo/spawn-async").SpawnPromise<import("@expo/spawn-async").SpawnResult>;
11*8d3f3824SCedric van Putten    removeAsync(namesOrFlags: string[]): import("@expo/spawn-async").SpawnPromise<import("@expo/spawn-async").SpawnResult>;
12*8d3f3824SCedric van Putten    removeDevAsync(namesOrFlags: string[]): import("@expo/spawn-async").SpawnPromise<import("@expo/spawn-async").SpawnResult>;
13*8d3f3824SCedric van Putten    removeGlobalAsync(namesOrFlags: string[]): import("@expo/spawn-async").SpawnPromise<import("@expo/spawn-async").SpawnResult>;
14*8d3f3824SCedric van Putten}
15