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