import { PropsWithChildren } from 'react';
interface Props {
    id?: string;
    className?: string;
    color?: string;
    size?: string;
    disabled?: boolean;
    outline?: boolean;
}
declare const Badge: ({ id, color, size, className, disabled, outline, children }: PropsWithChildren<Props>) => import("react/jsx-runtime").JSX.Element;
export default Badge;
