import { CustomerItem } from '@interfaces'; export interface CustomerItemCardProps { item: CustomerItem; onPress?: () => void; onDelete?: () => void; }