import type { SetValue } from '../types.js'; export declare const NPM_CLIENTS: Set<"npm" | "yarn" | "pnpm" | "bun" | "deno">; export type NpmClient = SetValue; export declare const getNpmClient: () => NpmClient; export declare const getNpmInstallCommand: (packageName: string) => string;