interface LicenseInfo {
    attribution: boolean;
    commercial: boolean;
    sameLicense?: boolean;
}
/**
 * Data for open source licenses used by icon sets in `@iconify/json` package and smaller packages
 *
 * Key is SPDX license identifier
 */
declare const licensesData: Record<string, LicenseInfo>;

export { type LicenseInfo, licensesData };
