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