import type { ElementType, HTMLAttributes, ReactNode } from 'react';
export type BadgeProps = {
is?: ElementType>;
variant?: 'secondary' | 'primary' | 'danger' | 'warning' | 'ghost';
small?: boolean;
disabled?: boolean;
className?: string;
children?: ReactNode;
title?: string;
} & HTMLAttributes;
declare function Badge({ is: Tag, variant, small, className, disabled, ...props }: BadgeProps): import("react/jsx-runtime").JSX.Element;
export default Badge;
//# sourceMappingURL=Badge.d.ts.map