import type { ComponentPropsWithoutRef } from 'react'; type BadgeVariant = 'primary' | 'secondary' | 'success' | 'danger' | 'outline'; type BadgeProps = ComponentPropsWithoutRef<'span'> & { variant?: BadgeVariant; }; declare function Badge({ children, className, variant, ...props }: BadgeProps): import("react/jsx-runtime").JSX.Element; export type { BadgeProps, BadgeVariant }; export default Badge;