import "server-only"; import type { ClassAttributes, ImgHTMLAttributes } from "react"; import { type IconNames } from "./icons"; export type BadgeProps = JSX.IntrinsicAttributes & ClassAttributes & ImgHTMLAttributes & { logoColor?: `#${string}`; label?: string; backgroundColor?: `#${string}`; name: IconNames; }; export declare function Badge({ name, logoColor, label, backgroundColor, ...rest }: BadgeProps): Promise;