import { BillingStatisticsLine } from './BillingStatisticsLine';
/** Billing statistics for the current period */
export interface BillingStatistics {
    /** End of the billing period */
    endDate: string;
    /** List of lines associated to this statistics entity. */
    lines: BillingStatisticsLine[];
    /** Start of the billing period */
    startDate: string;
}
//# sourceMappingURL=BillingStatistics.d.ts.map