import * as React from 'react';
import { type VariantProps } from 'class-variance-authority';
interface BadgeProps extends React.HTMLAttributes<HTMLElement>, VariantProps<typeof badgeVariants> {
    asChild?: boolean;
}
declare const badgeVariants: (props?: ({
    variant?: "default" | "destructive" | "outline" | "secondary" | null | undefined;
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
declare const Badge: React.ForwardRefExoticComponent<BadgeProps & React.RefAttributes<HTMLElement>>;
export { Badge, type BadgeProps };
//# sourceMappingURL=badge.d.ts.map