import * as React from "react"; import { SystemIcons } from "../../icons/dist/system-icons-enum"; export interface ColorCodedBadgeProps { color?: React.CSSProperties["color"]; iconShape?: SystemIcons; children?: JSX.Element | string; } declare const ColorCodedBadge: ({ children, color, iconShape }: ColorCodedBadgeProps) => JSX.Element; export default ColorCodedBadge;