declare const npmClientLockMap: { npm: string[]; yarn: string[]; pnpm: string[]; }; export declare type NpmClientType = keyof typeof npmClientLockMap; declare function getNpmClient(context: string): NpmClientType; export default getNpmClient;