import { VariantProps } from 'class-variance-authority'; import { HTMLAttributes, ReactNode } from 'react'; type ChipVariant = "default" | "success" | "warning" | "error" | "important"; interface ChipProps extends HTMLAttributes { /** * The variant of the chip. Default value is "default". */ variant?: ChipVariant; /** * The label text displayed on the chip. */ label: string; /** * Optional icon to display alongside the label. */ icon?: ReactNode; /** * Optional additional CSS class names. */ className?: string; } declare const Chip: import('react').ForwardRefExoticComponent string> & import('react').RefAttributes>; export { Chip }; export type { ChipProps };