import { Period } from './Period';
/** UsageHistory */
export interface UsageHistory {
    /** Usage id */
    id: string;
    /** Entry last update */
    lastUpdate: string;
    /** Usage dates (from/to) */
    period: Period;
}
//# sourceMappingURL=UsageHistory.d.ts.map