import React from "react"; import { ChipSetProps, ChipProps } from "@material/react-chips"; interface ChipsProps extends Omit { onChange?: (ids: Array) => void; options?: Array; children: Array> | React.ReactElement; } /** * A form control for adding and removing items to a set. */ declare function InputChips({ onChange, ...rest }: ChipsProps): React.JSX.Element; export default InputChips;