/** Object containing [SPDX licenses](https://spdx.org/licenses/) indexed by their identifiers. @example ``` import * as spdx from 'spdx-license-list'; console.log(spdx.MIT); //=> { //=> name: 'MIT License', //=> url: 'http://www.opensource.org/licenses/MIT', //=> osiApproved: true //=> } ``` */ declare const spdxLicenseList: Readonly>; export = spdxLicenseList;