import { DateTime } from 'luxon'

export interface TimePeriod {
  startDate: DateTime
  endDate: DateTime
}