import * as React from 'react'; interface ChipContent { title: string; } interface Props { chips: ChipContent[]; inputValue: string; onChangeInput: (e: { target: { value: string; }; }) => void; id?: string; addChip: (chip: string) => void; removeChip: (chip: string) => void; style?: React.CSSProperties; } declare const ChipEditor: (props: Props) => JSX.Element; export default ChipEditor;