import { HTMLAttributes, Ref } from 'react';
import { ComponentColor, IComponentBaseProps, Size } from '../types';
export declare const BADGE = "badge";
export declare const COLOR_MAP: Record;
export declare const SIZE_MAP: Record;
type Variant = "soft" | "dash" | "outline";
export declare const VARIANT_MAP: Record;
export declare const BADGE_MAP: {
responsive: string;
soft: string;
dash: string;
outline: string;
xs: string;
sm: string;
md: string;
lg: string;
xl: string;
success: string;
info: string;
warning: string;
error: string;
primary: string;
secondary: string;
accent: string;
neutral: string;
ghost: string;
};
export interface BadgeProps extends Omit, "color">, IComponentBaseProps {
ref?: Ref;
size?: Size;
color?: ComponentColor;
variant?: Variant;
responsive?: boolean;
}
export {};