import { ReactNode } from 'react'; export interface ApiSettingsState { apiUrl: string; apiKey: string; } export enum DepartureRange { Morning = 0, Afternoon = 1, Evening = 2, Night = 3 } // export interface TravelType { // id: number; // label: string; // icon?: ReactNode; // } // export interface TravelClass { // id: number; // label: string; // icon?: ReactNode; // } export interface PickerItem { id: string; label: string; icon?: ReactNode; }