import React from 'react';
import { Theme } from '../../theme';
export interface BadgeProps {
    /** The color theme of the badge */
    color: keyof Theme['colors'];
    /** The style of the badge */
    variant?: 'solid' | 'outline';
    /** @ignore */
    children: React.ReactNode;
}
declare const _default: React.MemoExoticComponent<React.ForwardRefExoticComponent<BadgeProps & React.RefAttributes<HTMLElement>>>;
export default _default;
