import { type IPackage } from "../../package/package.js"; type Name = string; type Version = string; type License = string; export type LicenseSummary = Map>; export type GroupedLicenseSummary = Array<{ license: string; names: string[]; }>; export declare class LicenseUtilities { private _p; constructor(_p: IPackage); get license(): string; private _isLicenseObject; get licenses(): LicenseSummary; get licensesByGroup(): GroupedLicenseSummary; } export {};