export type UserPreferencesTheme = 'dark' | 'light'; export type UserPreferencesState = { isSidebarMinimized?: boolean; theme: UserPreferencesTheme; activeAirportId?: string; };