export interface Doctor {
  id: string;
  name: string;
  specialty: string;
  crm: string;
  photoUrl: string;
  style: string;
  keywords: string[];
  isActive: boolean;
}

export const DOCTORS: Doctor[];

export function getDoctorById(doctorId: string): Doctor | undefined;

export function getActiveDoctors(): Doctor[];
