import React from 'react'; import { StepperProps } from '../type'; export default function useInputEvent(params: Required> & Pick & { actualInputValue: number; innerValue: number; updateValue: (updater: number | ((oldValue: number) => number)) => void; }): { handleInput: (e: React.FocusEvent) => void; handleBlur: (e: React.FocusEvent) => void; };