import { BsPrefixProps, BsPrefixRefForwardingComponent } from './helpers'; import { Color, Variant } from './types'; export interface BadgeProps extends BsPrefixProps { bg?: Variant; pill?: boolean; text?: Color; } declare type Badge = BsPrefixRefForwardingComponent<'span', BadgeProps>; declare const Badge: Badge; export default Badge;