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