import { ThemeColorIndex } from "../../styles/theme.interface"; export declare type BadgeVariant = 'custom' | 'success' | 'error' | 'warn' | 'info'; export interface BadgeProps { children: any; onClick?: (event?: any) => void; color?: ThemeColorIndex; border?: ThemeColorIndex; textColor?: ThemeColorIndex; className?: string; variant?: BadgeVariant; [props: string]: any; } export declare const Badge: ({ variant, children, onClick, color, border, textColor, className, ...props }: BadgeProps) => import("@emotion/react/jsx-runtime").JSX.Element;