import { ChangeEventHandler } from 'react'; export interface UsePickerInputValueProps { defaultValue?: string; initialValue?: string; onChange?: (val: string) => void; } export declare function usePickerInputValue(props?: UsePickerInputValueProps): { inputValue: string; inputChangeHandler: ChangeEventHandler; onChange: import("react").Dispatch>; }; export default usePickerInputValue;