export interface SpdxConformance { name: string; id: string; deprecated: boolean; osi: boolean; fsf: boolean; } declare const licenseNameToId: Map; declare const osi: string[]; declare const fsf: string[]; declare const deprecated: string[]; declare const spdxLicenseIds: Set; export declare function closestSpdxLicenseID(licenseID: string): string; export declare function checkSpdx(licenseToCheck: string): { osi: boolean; fsf: boolean; fsfAndOsi: boolean; includesDeprecated: boolean; }; export { osi, fsf, deprecated, licenseNameToId, spdxLicenseIds }; //# sourceMappingURL=licenses.d.ts.map