import { SnapshotUsageDetail } from './SnapshotUsageDetail';
import { Price } from '../../order/Price';
/** Snapshots usage for current month */
export interface SnapshotsUsage {
    /** Snapshots usage details */
    detail: SnapshotUsageDetail[];
    /** Total cost for the snapshots */
    total: Price;
}
//# sourceMappingURL=SnapshotsUsage.d.ts.map