'use client'; import { Bell } from 'lucide-react'; import { useEffectiveDriverId } from '@/hooks/useEffectiveDriverId'; import { useNotifications } from '@/components/notifications/NotificationProvider'; import type { NotificationVariant } from '@/components/notifications/notificationTypes'; import type { DemoNotificationType, DemoUrgency } from '../types'; interface NotificationSendSectionProps { selectedType: DemoNotificationType; selectedUrgency: DemoUrgency; sending: boolean; lastSent: string | null; onSend: () => void; } export function NotificationSendSection({ selectedType, selectedUrgency, sending, lastSent, onSend }: NotificationSendSectionProps) { return (

Silent: Notification center only
Toast: Temporary popup (auto-dismisses)
Modal: Blocking popup (may require action)

); }