type DropdownState = { isOpen: boolean; inputValue: string; highlightedIndex: number; selectedItem: Item | null; }; /** * Check if a state is equal for dropdowns, by comparing isOpen, inputValue, highlightedIndex and selected item. * Used by useSelect and useCombobox. * * @param prevState The previous dropdown state. * @param newState The new dropdown state. * @returns Whether the states are deeply equal. */ export declare function isDropdownStateEqual(prevState: DropdownState, newState: DropdownState): boolean; export {};