import React, { RefAttributes } from 'react';
import { ChipProps } from './Chip.types';
/**
 * Chips are compact elements that represent an input, attribute, or action
 */
declare const Chip: React.ForwardRefExoticComponent<RefAttributes<HTMLDivElement> & ChipProps>;
export default Chip;
