export interface NotificationBellProps { /** Number of unread notifications (badge hides when 0) */ unreadCount?: number; /** Click handler */ onclick?: () => void; /** Enable shake animation to draw attention */ animate?: boolean; } declare const NotificationBell: import("svelte").Component< NotificationBellProps, {}, "" >; type NotificationBell = ReturnType; export default NotificationBell;