export interface Analyst {
  id: string;
  name: string;
  title: string;
  bio?: string;
  sectors: string[];
}
