import type { BarNotification } from '../hooks/useBarNotifications'; import { type LauncherMode } from '../lib/constants'; import { type BarDock } from '../lib/voiceBar'; interface LauncherNotificationProps { notifications: BarNotification[]; dock: BarDock; mode: Exclude; onDismiss: () => void; } export declare function LauncherNotification({ notifications, dock, mode, onDismiss, }: LauncherNotificationProps): import("react/jsx-runtime").JSX.Element | null; export {};