import React from 'react'; import { GlobalProps } from '../utilities/globalProps'; declare type BadgeProps = { aria?: { [key: string]: string; }; className?: string; closeProps?: { onClick?: React.MouseEventHandler; onMouseDown?: React.MouseEventHandler; onTouchEnd?: React.TouchEventHandler; }; data?: { [key: string]: string; }; id?: string; removeIcon?: boolean; removeOnClick?: React.MouseEventHandler; rounded?: boolean; text?: string; variant?: "error" | "info" | "neutral" | "notification" | "primary" | "success" | "warning"; } & GlobalProps; declare const Badge: (props: BadgeProps) => JSX.Element; export default Badge;