/**
* Returns a callback function that calls the given callback with the `target.value` of
* an input change event.
* @param callback the callback to call with the `target.value`
* @returns a callback function that calls the given callback with the `target.value`
* @example
* const [value, setValue] = useState('');
* const onChange = useChangeEventValueCallback(setValue);
*
*/
export declare function useChangeEventValueCallback(callback: (value: string) => void): (event: React.ChangeEvent) => void;
export default useChangeEventValueCallback;
//# sourceMappingURL=useChangeEventValueCallback.d.ts.map