import { ComponentProps, FC } from "react"; import { EbayChangeEventHandler } from "../common/event-utils/types"; export type ChangeEventProps = { index: number; selected: string[]; wasClicked: boolean; }; export type EbayListboxButtonProps = Omit, "onChange"> & { selected?: number; borderless?: boolean; fluid?: boolean; maxHeight?: string; prefixId?: string; prefixLabel?: string; floatingLabel?: string; split?: "none" | "start" | "end"; unselectedText?: string; onChange?: EbayChangeEventHandler; onCollapse?: () => void; onExpand?: () => void; }; declare const ListboxButton: FC; export default ListboxButton; //# sourceMappingURL=listbox-button.d.ts.map