interface Props { children?: import('svelte').Snippet<[{ count: number; display: string; hasUnread: boolean; }]>; count?: number; max?: number; showZero?: boolean; disabled?: boolean; class?: string; badgeClass?: string; announce?: boolean; 'aria-label'?: string; onclick?: (e: MouseEvent) => void; } declare const NotificationBell: import("svelte").Component; type NotificationBell = ReturnType; export default NotificationBell;