import { StatisticsLine } from './StatisticsLine';
/** License usage statistics. */
export interface Statistics {
    /** Date of the statistics. */
    date: string;
    /** List of lines associated to this statistics entity. */
    lines: StatisticsLine[];
}
//# sourceMappingURL=Statistics.d.ts.map