export declare type DependenciesField = 'optionalDependencies' | 'dependencies' | 'devDependencies'; export declare type DependenciesOrPeersField = DependenciesField | 'peerDependencies'; export declare const DEPENDENCIES_FIELDS: DependenciesField[]; export interface Registries { default: string; [scope: string]: string; } export declare type HoistedDependencies = Record>; export interface PatchFile { path: string; hash: string; }