import type { AutocompleteBaseInputOnChange, AutocompleteBaseInputValue } from '../../entities';
import type { AutocompleteBaseInputControl } from './types';
export declare const useAutocompleteBaseInput: ({ inputValue: inputValueProp, onChange, }: {
    inputValue: AutocompleteBaseInputValue | undefined;
    onChange: AutocompleteBaseInputOnChange | undefined;
}) => AutocompleteBaseInputControl;
