import * as React from 'react'; import type { SelectValue } from '../../NativeSelect/NativeSelect'; import type { SelectProps } from '../CustomSelect'; import type { CustomSelectOptionInterface } from '../types'; type UseInputValueControllerProps = Pick, 'options' | 'onInputChange' | 'accessible'> & { selectedValue: SelectValue; }; export declare function useInputValueController({ options, accessible, selectedValue, onInputChange: onInputChangeProp, }: UseInputValueControllerProps): { inputValue: string; resetInputValue: () => void; resetInputValueBySelectedOption: () => void; onInputChange: React.ChangeEventHandler; }; export {}; //# sourceMappingURL=useInputValueController.d.ts.map