import { BaseGesture, BaseGestureConfig } from './gesture'; import { LongPressGestureConfig, LongPressGestureHandlerEventPayload } from '../LongPressGestureHandler'; export declare class LongPressGesture extends BaseGesture { config: BaseGestureConfig & LongPressGestureConfig; constructor(); minDuration(duration: number): this; maxDistance(distance: number): this; } export declare type LongPressGestureType = InstanceType;