import * as React from 'react'; import { CustomElements, DropDownSelectProps, DropDownSelectState, UseCustomElementsExtra } from './types'; export declare const useSyncedHighlightedValue: ({ filterValue, shouldFilterValues, mergeState, data, textField, }: { data: import("../../commonTypes").SuggestionValue[] | undefined; filterValue: string | null; mergeState: React.Dispatch>; shouldFilterValues: boolean; textField?: string | undefined; }) => void; export declare const useCustomElements: (props: DropDownSelectProps, state: DropDownSelectState, { inputSuggestion }: UseCustomElementsExtra) => CustomElements; export declare const useCorrectSuggestionsInControlledMode: ({ mergeState, valueProp, }: { mergeState: React.Dispatch>; valueProp?: string | number | import("../../commonTypes").SomeObject | null | undefined; }) => void;