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