import type { RefObject } from "react"; import React from "react"; import type { CommonSelectProps, SelectOption } from "./Combobox"; type OptionsListProps = { isOpen: boolean; isMultiSelect?: boolean; triggerRef: RefObject; triggerWrapperRef?: RefObject; onCloseDropdown: (noSelect?: boolean) => void; selectedIndex: number; onSelectedIndexChange: (index: number) => void; forceChangeFakeSelect: (selectedOption: SelectOption) => void; isVirtualized?: boolean; } & Partial; export declare function getOptionId(selectName: string, optionValue: string): string; export declare function getOptionsListId(selectName: string): string; export declare function OptionsList({ isOpen, isMultiSelect, value, disabled, options, portalContainer, triggerRef, triggerWrapperRef, maxHeight, emptyStateMessage, selectedIndex, optionsListWidth, isVirtualized, name, onCloseDropdown, onSelectedIndexChange, forceChangeFakeSelect, }: OptionsListProps): React.ReactElement; export {};