import React, { type ComponentType } from 'react'; import { type EndItemProps } from './end-item'; interface NotificationsProps extends Omit { /** * The component to render as the badge. * You are recommended to use the Badge component from `@atlaskit/badge`. */ badge: ComponentType; } /** * __Notifications__ * * The trigger button for the notifications menu in the top navigation bar. */ export declare const Notifications: React.ForwardRefExoticComponent & React.RefAttributes>; export {};