export interface DateTimeRange {
    start: Date;
    end: Date | null;
}
