import { ComponentProps, FC, ReactElement } from "react"; export type EbayListboxOptionProps = ComponentProps<"div"> & { icon?: ReactElement; text?: string; value: string; disabled?: boolean; selected?: boolean; }; export declare const EbayListboxOption: FC; //# sourceMappingURL=listbox-option.d.ts.map