import type { BarNotification } from '../hooks/useBarNotifications'; import { type LauncherMode } from '../lib/constants'; import { type BarDock } from '../lib/voiceBar'; interface VoiceBarLauncherProps { dock: BarDock; mode: Exclude; logoUrl: string | null; notifications: BarNotification[]; needsLogin: boolean; onLoginOpen: () => void; onLoginDismiss: () => void; onOpen: () => void; onChat: (() => void) | null; onDrop: (dock: BarDock) => void; setDragging: (dragging: boolean) => void; } export declare function VoiceBarLauncher({ dock, mode, logoUrl, notifications, needsLogin, onLoginOpen, onLoginDismiss, onOpen, onChat, onDrop, setDragging, }: VoiceBarLauncherProps): import("react/jsx-runtime").JSX.Element; export {};