import { ContinousBaseGesture } from './gesture'; import type { PinchGestureHandlerEventPayload } from '../GestureHandlerEventPayload'; import { GestureUpdateEvent } from '../gestureHandlerCommon'; export type PinchGestureChangeEventPayload = { scaleChange: number; }; export declare class PinchGesture extends ContinousBaseGesture { constructor(); onChange(callback: (event: GestureUpdateEvent) => void): this; } export type PinchGestureType = InstanceType;