import { type ButtonHTMLAttributes } from 'react';
type NotificationBellProps = Omit, 'children'> & {
initialItems?: number;
minResetItems?: number;
maxResetItems?: number;
resetDelay?: number;
label?: string;
};
declare const NotificationBell: ({ initialItems, minResetItems, maxResetItems, resetDelay, label, className, onClick, type, "aria-label": ariaLabel, "aria-labelledby": ariaLabelledBy, ...props }: NotificationBellProps) => import("react/jsx-runtime").JSX.Element;
export { NotificationBell };
export type { NotificationBellProps };