/// export interface IconValueVisualInterface { icon: string; value: string; type?: string; iconColor?: string; iconSize?: "sm" | "md" | "lg"; variant?: "button" | "caption" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "inherit" | "subtitle1" | "subtitle2" | "body1" | "body2" | "overline" | undefined; maxWidth?: number; } declare const IconValueVisual: ({ icon, value, type, iconColor, iconSize, variant, maxWidth }: IconValueVisualInterface) => JSX.Element; export default IconValueVisual;