import React from 'react'; import type { BadgeProps, StandaloneBadgeProps } from './types'; export declare function Badge({ shape, position, offset, variant, style, badgeContent, maxDigits, children, }: BadgeProps): string | number | boolean | Iterable | React.JSX.Element | null | undefined; export declare function StandaloneBadge({ variant, style, content, maxDigits, className, }: StandaloneBadgeProps): React.JSX.Element | null;