import * as React from 'react'; import { GetSuggestionItemProps, SuggestionItemComputedProps } from './types'; /** * Helper scrolls to selected item * @param {React.MutableRefObject} containerRef - Ref of the container * @param {React.MutableRefObject} suggestionRef - Ref of the item * * @returns {void} */ export declare const scrollToSuggestion: (containerRef: React.MutableRefObject, suggestionRef: React.MutableRefObject) => void; /** * Helper computes additional properties of SuggestionItem component * @param {SuggestionItemComputedProps} - Additional properties of SuggestionItem component * * @returns {SuggestionItemComputedProps} - Additional properties */ export declare const getSuggestionItemProps: ({ compareObjectsBy, suggestion, textField, placeholder, highlightedSuggestion, selectedSuggestion, selectAllState, }: GetSuggestionItemProps) => SuggestionItemComputedProps;