import { type PropsWithChildren } from 'react'; export interface BadgeProps { className?: string; color?: string; href?: string; pill?: boolean; tag?: keyof JSX.IntrinsicElements; [key: string]: any; } declare function Badge({ className, color, href, pill, tag: Tag, ...props }: PropsWithChildren): JSX.Element; export default Badge;