export interface DatePreset {
  label: string;
  range: {
    from: Date;
    to: Date;
  };
}
