import type { ArboristOptions } from '../shadow/npm/arborist/types.mts'; import type { SemVer } from 'semver'; export type NpmConfigOptions = { cwd?: string | undefined; env?: Record | undefined; execPath?: string | undefined; nodeVersion?: string | undefined; npmCommand?: string | undefined; npmPath?: string | undefined; npmVersion?: SemVer | string | undefined; platform?: NodeJS.Platform | undefined; }; export declare function getNpmConfig(options?: NpmConfigOptions | undefined): Promise; //# sourceMappingURL=npm-config.d.mts.map