export type Organization = string;
export interface License {
    key?: string;
}
export declare class LicenseInfo {
    organization: Organization;
    constructor({ organization }: {
        organization: Organization;
    });
    getLicenseInfo(): any;
    getLicenseKey(): License["key"];
    setLicenseKey(key?: string): void;
}
