import { JSX } from "solid-js"; import { BsPrefixProps, BsPrefixRefForwardingComponent } from "./helpers"; import { Color, Variant } from "./types"; export interface BadgeProps extends BsPrefixProps, JSX.HTMLAttributes { bg?: Variant; pill?: boolean; text?: Color; } declare const Badge: BsPrefixRefForwardingComponent<"span", BadgeProps>; export default Badge;