import { LicenseEnum } from './LicenseEnum';
/** License usage statistics line. */
export interface StatisticsLineNative {
    /** Count of activated licenses at the end of the day. */
    endOfDayCount: number;
    /** Type of the Office license. */
    licenceType: LicenseEnum;
    /** Maximum count of simultaneous activated licences. */
    peakCount: number;
}
//# sourceMappingURL=StatisticsLineNative.d.ts.map