import { WheelEvent } from 'react'; import CoordinatesRecognizer from './CoordinatesRecognizer'; export declare class WheelRecognizer extends CoordinatesRecognizer<'wheel'> { readonly ingKey = "wheeling"; readonly stateKey = "wheel"; debounced: boolean; handleEvent: (event: React.WheelEvent | WheelEvent) => void; onEnd: () => void; addBindings(bindings: any): void; }