import { LicenseStatusEnum } from './LicenseStatusEnum';
/** HYCU license State */
export interface State {
    /** The latest comment or error message */
    comment: string;
    /** The HYCU controller ID for this license */
    controllerId: string;
    /** The license expiration date */
    expirationDate: string;
    /** The license status */
    licenseStatus: LicenseStatusEnum;
    /** License ID */
    serviceName: string;
}
//# sourceMappingURL=State.d.ts.map