/// <reference types="react" />
interface BadgeProps {
    label?: string;
    color?: string;
    backgroundColor: string;
    disabled?: boolean;
    bold?: boolean;
    border?: "default" | "pill" | "rounded";
    borderStyle?: "dotted" | "dashed" | "solid";
    borderColor?: string;
}
declare function Badge({ label, backgroundColor, disabled, bold, border, borderStyle, color, borderColor }: BadgeProps): JSX.Element;
export default Badge;
//# sourceMappingURL=index.d.ts.map