import { ComponentProps, ExcludedProps } from "@vitality-ds/system"; import { BaseBadge } from "./styled"; export declare type BadgeProps = ExcludedProps & ComponentProps & { /** * The numeric value to display inside the badge. */ content?: number | string; };