/** * Copyright © INOVUA TRADING. * * This source code is licensed under the Commercial License found in the * LICENSE file in the root directory of this source tree. */ export type LICENSE_TYPE = 'single_app' | 'multi_app' | 'trial'; export type BasicInfo = { AppName: 'multi_app' | 'trial' | string; LicenseType: LICENSE_TYPE; ExpiryDate: string; LicenseDeveloperCount: string | number; Company: string; Ref: string; Z?: string; }; export type DecodeInfo = BasicInfo & { Corrupt: boolean; }; export declare const decode: (licenseKey: string) => DecodeInfo | void;