export interface CustomerDetailHeaderProps { company: string; fullname?: string | null; active: string; datecreated?: string | null; email?: string | null; phonenumber?: string | null; website?: string | null; onEmailPress?: () => void; onPhonePress?: () => void; onWebsitePress?: () => void; }