export interface RawLicenseInfo { t?: boolean; i?: number; e?: number; h?: string[] | true; s?: string; et?: Record; } export interface LicenseInfo extends RawLicenseInfo { exists?: boolean; valid?: boolean; expired?: boolean; allowed?: boolean; local?: boolean; hasEntitlement: (name: string) => boolean; } //# sourceMappingURL=license-info.d.ts.map