import type { HTMLAttributes } from "react";
import { IconName } from "../icon/icon";
export type BadgeVariant = "default" | "new";
export interface BadgeProps extends HTMLAttributes<HTMLSpanElement> {
    label?: string;
    variant?: BadgeVariant;
    icon?: IconName;
    iconSize?: number;
}
export declare function Badge({ label, variant, icon, iconSize, className, ...props }: BadgeProps): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=badge.d.ts.map