/**
 * This file is based on the npm package validate-npm-package-name from npm itself.
 * https://github.com/npm/validate-npm-package-name/blob/main/lib/index.js
 */
export interface ValidateNpmResult {
    validForNewPackages: boolean;
    validForOldPackages: boolean;
    errors?: string[];
    warnings?: string[];
}
export declare function validateNpmPackage(name: string): ValidateNpmResult;
