import { default as React } from 'react'; import { ColorType } from '../../../utils'; import { ChipsType } from '../type'; interface ChipItemProps { colorType: ColorType; disabled?: boolean; displayValue: string; onClick?: () => void; onReset?: () => void; selected?: boolean; type: ChipsType; } declare const ChipItem: React.FC; export type { ChipItemProps }; export { ChipItem }; //# sourceMappingURL=index.d.ts.map