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