import type { PropsFor } from "../../types.js"; export type BadgeState = BadgeProps["state"]; export type BadgeProps = PropsFor<"div", { /** Available states: `default`, `success`, `warning`, `alert`, `attn`, `chill`, `brand` and `neutral` */ state?: "default" | "success" | "warning" | "alert" | "attn" | "chill" | "brand" | "neutral"; /** Invert colors */ inverted?: boolean; /** Apply rounded corners */ pill?: boolean; }>; /** * Non-clickable badge for very short messages (i.e. server status) - also see * `` * * @see https://bifrost.intility.com/react/badge * * @example * Badger * Chill * Pill */ declare const Badge: import("react").ForwardRefExoticComponent>; export default Badge;