import * as React from "react"; export interface LatestItem { id: string | number; icon: React.ReactNode; iconBgColor?: string; title: string; subtitle: string; amount: string; timeAgo: string; } export interface LatestItemsListProps { title?: string; items: LatestItem[]; onViewAll?: () => void; accentColor: string; }