export interface CounterBadgeProps { /** The visual style of the badge */ type: "solid" | "outlined"; /** The text content to display in the badge */ label: string; } export declare function CounterBadge({ type, label }: CounterBadgeProps): import("react/jsx-runtime").JSX.Element;