declare class License { private readonly licenseKey; private browserCompatibility; private isValid; constructor(licenseKey: string); /** * This method checks the license key is valid * @returns - Is key valid */ checkLicenseKey: (licenseKey: string, domainName: string) => Promise; /** * This will returns the device Id data * @returns - Device Id */ setDeviceId: () => Promise; } export default License;