import { UseMoveConfig, Handler, EventTypes } from '../types'; /** * Move hook. * * @param handler - the function fired every time the move gesture updates * @param [config={}] - the config object including generic options and move options */ export declare function useMove(handler: Handler<'move', K>, config?: UseMoveConfig | {}): (...args: any[]) => import("../types").ReactEventHandlers;