import { ReactNode } from 'react'; export interface BadgeProps { count?: number | string; dot?: boolean; max?: number; children: ReactNode; ariaLabel?: string; } export declare function Badge({ count, dot, max, children, ariaLabel }: BadgeProps): import("react/jsx-runtime").JSX.Element;