/** License usage statistic. */
export interface Statistic {
    /** Number of available seats in the subscription */
    available: number;
    /** License type's unique identifier */
    licenseId: number;
    /** Number of used seats in the subscription */
    used: number;
}
//# sourceMappingURL=Statistic.d.ts.map