import type { ReactNode } from 'react'; import React from 'react'; interface Props { /** * Unique ID for the component */ id?: string; /** * Content of the component */ children?: ReactNode; /** * Allows to change CSS property `position` * * @default 'absolute' */ position?: string; /** * Allows to change CSS property `top` * * @default '0' */ top?: string; /** * Allows to change CSS property `right` * * @default '0' */ right?: string; /** * Allows to pass a custom className */ className?: string; /** * Allows to pass testid string for testing purposes */ 'data-testid'?: string; /** * Screen reader label for the badge (visually hidden) */ visuallyHiddenText?: string; } /** @visibleName Notification Badge */ declare const NotificationBadge: ({ "data-testid": dataTestId, visuallyHiddenText, ...props }: Props) => React.JSX.Element; /** @component */ export default NotificationBadge;