UNPKG

@ebay/ui-core-react

Version:

Skin components build off React

14 lines 540 B
import React from "react"; import { ChipsComboboxChangeHandler } from "./types"; import { EbayComboboxProps } from "../ebay-combobox"; export type EbayChipsComboboxProps = Omit<EbayComboboxProps, "onChange"> & { error?: boolean; selected?: string[]; defaultSelected?: string[]; disabled?: boolean; a11yDeleteButtonText?: string; onChange?: ChipsComboboxChangeHandler; }; declare const EbayChipsCombobox: React.FC<EbayChipsComboboxProps>; export default EbayChipsCombobox; //# sourceMappingURL=chips-combobox.d.ts.map