export declare function getCurrentNpmrcConfig(): Promise>; export declare function getNpmrcRegistry(npmrcConfig: Record): { isDefault: boolean; registryUrl: string; cleanRegistryUrl: string; }; export type NpmConfigLayers = { builtin: Record; global: Record; user: Record; project: Record; env: Record; paths: { project: string | undefined; user: string | undefined; global: string | undefined; }; };