declare const StyledBadgeWrapper: import("styled-components").StyledComponent<"div", any, {}, never>; declare const StyledCounter: import("styled-components").StyledComponent<"div", any, {}, never>; interface StyledBadgeProps { customColor?: string; size?: "small" | "medium" | "large"; variant?: "typical" | "subtle"; inverse?: boolean; hasChildren?: boolean; } declare const StyledBadge: import("styled-components").StyledComponent<"span", any, { theme: object; } & { as: import("react").ForwardRefExoticComponent> | undefined; } & StyledBadgeProps, "theme" | "as">; export { StyledBadge, StyledBadgeWrapper, StyledCounter };