import type { ForwardedRef, WheelEvent } from 'react'; export default function useDisableInputWheel(ref?: ForwardedRef): { handleOnWheel: (event: WheelEvent) => void; };