export declare function getCurrentNpmVersion(): string; export interface NpmVersionInfo { [key: string]: string; npm: string; node: string; } export declare function npmPackCanReportInJson(version: string): boolean; export declare function currentNpmVersion(): { canReportInJson(): { packCommand(): boolean; }; };