UNPKG

@ebay/ui-core-react

Version:

Skin components build off React

9 lines 334 B
import { ComponentProps, FC } from "react"; export type EbayComboboxOptionProps = Omit<ComponentProps<"div">, "children"> & { text: string; value?: string; selected?: boolean; }; declare const EbayComboboxOption: FC<EbayComboboxOptionProps>; export default EbayComboboxOption; //# sourceMappingURL=combobox-option.d.ts.map