import React from "react"; export interface BadgeVisualInterface { color?: string; label: string; borderPlacement?: "all" | "bottom-left" | "bottom-right" | "top-right" | "top-left" | undefined; darkText?: boolean; variant?: "button" | "caption" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "inherit" | "subtitle1" | "subtitle2" | "body1" | "body2" | "overline" | undefined; } declare const BadgeVisual: React.FC; export default BadgeVisual;