import { type VariantProps } from "class-variance-authority"; import type { PropsWithChildren } from "react"; declare const badgeVariants: (props?: ({ variant?: "bordered" | "outlined" | "flat" | null | undefined; color?: "gray" | "red" | "yellow" | "green" | null | undefined; rounded?: "full" | null | undefined; size?: "sm" | "md" | "lg" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; export type BadgeProps = { text?: string; hasDot?: boolean; onClick?: () => void; } & VariantProps; export declare function Badge({ children, text, color, variant, hasDot, rounded, size, onClick, }: PropsWithChildren): import("react/jsx-runtime").JSX.Element; export {};