import { LicenseStatus } from '../utils/licenseStatus'; import { LicenseScope } from '../utils/licenseScope'; export declare function generateReleaseInfo(releaseDate?: Date): string; export declare function verifyLicense({ releaseInfo, licenseKey, acceptedScopes, }: { releaseInfo: string; licenseKey: string | undefined; acceptedScopes: LicenseScope[]; }): { status: LicenseStatus; meta?: any; };