import { CommandModule } from 'yargs'; interface LoadOK { success: true; source: string; value: string; } interface LoadError { success: false; message: string; } type LoadResult = LoadOK | LoadError; interface TelerikLicenseKey { type: 'telerik-license'; iat: number; aud?: string; licenses: string[]; licenseId: string; userId: string; } interface LicenseEvidence { type: string; code?: string; expiration?: number; licenseId: string; userId: string; } export declare function loadLicense(): LoadResult; export declare function decodeLicenseKey(key: string): Promise; export declare function decodeLicenseEvidence(key: string): Promise; export declare const activateCommand: CommandModule; export declare const helpCommand: CommandModule; export declare const refreshCommand: CommandModule; export declare const infoCommand: CommandModule;