/** * @ai-summary Dashboard feature public exports */ export { DashboardScreen } from './components/DashboardScreen'; export { DashboardPage } from './pages/DashboardPage'; export { SummaryCards, SummaryCardsSkeleton } from './components/SummaryCards'; export { VehicleAttention, VehicleAttentionSkeleton } from './components/VehicleAttention'; export { QuickActions, QuickActionsSkeleton } from './components/QuickActions'; export { useDashboardSummary, useVehiclesNeedingAttention } from './hooks/useDashboardData'; export type { DashboardSummary, VehicleNeedingAttention, DashboardData } from './types';