export interface LeadDetailHeaderProps { name: string; company?: string; email?: string; phonenumber?: string; statusId?: string; statusName: string; statusColor: string; avatarColor?: string; onStatusPress?: () => void; onEmailPress?: () => void; onPhonePress?: () => void; onStatusChange?: (statusId: string) => void; }