export declare class API { /** * Human readable string for the current version. Displayed in the UI */ readonly displayName: string; /** * Semver version, e.g. '3.9.0' */ readonly version: string; /** * Full version string including pre-release tags, e.g. '3.9.0-beta' */ readonly fullVersionString: string; static fromSimpleString(value: string): API; static readonly defaultVersion: API; static readonly v380: API; static readonly v390: API; static readonly v400: API; static readonly v401: API; static readonly v420: API; static readonly v430: API; static readonly v440: API; static readonly v460: API; static readonly v470: API; static readonly v490: API; static readonly v500: API; static readonly v510: API; static readonly v520: API; static readonly v544: API; static readonly v540: API; static readonly v560: API; static readonly v570: API; static readonly v590: API; static fromVersionString(versionString: string): API; private constructor(); eq(other: API): boolean; gte(other: API): boolean; lt(other: API): boolean; isYarnPnp(): boolean; } //# sourceMappingURL=api.d.ts.map