/** * @params color - Text color for badge with color/20 background * @params label - Text within badge */ import { ColorType } from "../../types/colors"; import { IconType } from "../icon"; export interface BadgeProps extends React.HTMLAttributes { color?: Exclude; label: string; size?: "sm" | "md" | "lg"; icon?: IconType; endIcon?: IconType; avatar?: string; status?: "online" | "offline" | "away"; } export declare function Badge({ label, color, icon, endIcon, size, avatar, status, ...props }: BadgeProps): JSX.Element; export default Badge;