export type MobileConfig = {
  app_name: string;
  primary_color: string;
  logo_url: string | null;
  tenant_id: string | number | null;
  support_email: string | null;
  support_phone: string | null;
};

export type StoredMobileConfig = {
  base_url: string;
  config: MobileConfig;
  saved_at: string;
};
