export interface DashboardData {
  totalUsers: number;
  totalRevenue: number;
  activeSessions: number;
  conversionRate: number;
  recentActivity: RecentActivity[];
}

export interface RecentActivity {
  id: number;
  action: string;
  timestamp: string;
}