export interface Contact {
id: string;
name: string;
email?: string;
phone?: string;
role?: string;
channels: string[];
isActive: boolean;
}