export type Theme = 'dark' | 'light';

export type Component =
  | 'chat'
  | 'analytics-overview'
  | 'analytics-users'
  | 'analytics-topics'
  | 'prompt-gallery'
  | 'explore'
  | 'recent-messages';
