import './Chip.scss'; interface ChipsProps { label: string; variant?: 'default' | 'primary' | 'success' | 'error' | 'warning' | 'caution'; size?: 'container-count' | 'small' | 'medium' | 'single-count'; hoverText?: string; withBackground?: boolean; withWhiteBackground?: boolean; } declare const Chip: ({ label, hoverText, variant, size, withBackground, withWhiteBackground, }: ChipsProps) => import("react/jsx-runtime").JSX.Element; export default Chip;