import { default as React } from 'react';
type BadgeVariant = "light" | "solid";
type BadgeSize = "sm" | "md";
type BadgeColor = "primary" | "success" | "error" | "warning" | "info" | "light" | "dark";
export interface BadgeProps {
    variant?: BadgeVariant;
    size?: BadgeSize;
    color?: BadgeColor;
    startIcon?: React.ReactNode;
    endIcon?: React.ReactNode;
    children: React.ReactNode;
    id?: string;
    role?: 'status' | 'badge';
    ariaLabel?: string;
}
export declare const Badge: React.FC<BadgeProps>;
export {};
