import * as React from 'react'; import HIDComponentProps from '../ComponentModel/HIDComponentModel'; import '../../../index.scss'; /** * HID Chips Props * */ export interface HIDChipsProps extends HIDComponentProps { /** Label for the chip.*/ label: string; /** Callback function for delete action.*/ callback: () => void; } export interface HIDChipsState { } /** * ### The API documentation of the HID Chip React component. Learn more about the properties and the API Methods. * */ export default class HIDChips extends React.Component { private handleDelete; private getChip; render(): JSX.Element; }