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