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