export interface OrderHistoryCardProps { providerName: string; providerImage: string; orderDate: string; status: string; total: number; onReorder?: () => void; onDetails?: () => void; }