import type { FC } from 'react'; import type { ButtonProps, ButtonVariant } from '../Button'; export type BadgeVariant = Exclude; export type BadgeProps = Omit & { variant?: BadgeVariant; dataTestId?: string; }; export declare const Badge: FC;