import type { ComponentPropsWithRef, ElementType } from 'react'; export type BadgeProperties = { /** Active style */ active?: boolean; /** Type of Badge */ badgeType?: 'critical' | 'neutral' | 'stable' | 'subtle' | 'warning'; /** Variant of Badge */ badgeVariant?: 'number' | 'icon'; /** Clear background */ clear?: boolean; /** Tag of Component */ tag?: ElementType; } & ComponentPropsWithRef; /** * Visual indicators communicating the status of a component. * @docs {@link https://design.visa.com/components/badge/?code_library=react | See Docs} * @vgar TODO * @wcag TODO */ declare const Badge: { ({ active, badgeType, className, clear, tag: Tag, badgeVariant, ...remainingProps }: BadgeProperties): import("react/jsx-runtime").JSX.Element; displayName: string; }; export default Badge;