import type { FC, HTMLAttributes } from 'react'; import type { VariantProps } from 'class-variance-authority'; import type { TestableProps } from '../../utils/testId'; import { numericBadgeVariants } from './classes'; type NumericBadgeNativeProps = HTMLAttributes; type NumericBadgeVariantsProps = Omit, 'clickable'>; export type NumericBadgeProps = NumericBadgeNativeProps & NumericBadgeVariantsProps & TestableProps; export declare const NumericBadge: FC; export {};