import * as React from 'react'; import { ReactElement } from 'react'; import { VariantProps } from 'class-variance-authority'; import { badgeVariants } from './badge.js'; import 'class-variance-authority/types'; interface ChipProps extends React.ComponentProps<"span">, VariantProps { /** When provided, renders a dismiss (×) button inside the chip. */ onRemove?: () => void; disabled?: boolean; } declare function Chip({ className, variant, onRemove, disabled, children, ...props }: ChipProps): ReactElement; export { Chip, type ChipProps };