import { default as React } from 'react'; import { IconName } from '../Icon'; import { ColorType } from '../../utils/ui'; export declare enum BadgeColorEnum { success = "success", neutral = "neutral", warning = "warning", error = "error" } export type BadgeColor = keyof typeof BadgeColorEnum; export type BadgeSize = 'small' | 'small-medium' | 'medium'; export interface BadgeProps { color?: BadgeColor | ColorType; size?: BadgeSize; icon?: IconName; children?: React.ReactNode; className?: string; hoverable?: boolean; pill?: boolean; ref?: React.Ref; } export declare function Badge(props: BadgeProps): import("react/jsx-runtime").JSX.Element;