import { type BadgeProps } from './Badge.types'; /** * The general-purpose Badge component. * This component switches the variants of looks depends on the props: dot, count and children: * - If `dot` is `true`, the badge will be displayed as a dot. * - If `count` is not `undefined`, the badge will be displayed as a number calculated by `digit` prop. * - If `children` is not `undefined`, the badge will be displayed in the top-right corner of the children. * - In addition, the `aria-describedby` attribute will be added to the children to link the aria-label of the badge. * * Also extends the props of `` element. * * @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/span */ export declare const Badge: import("react").ForwardRefExoticComponent>;