import { PanGesture } from 'react-native-gesture-handler'; import Reanimated from 'react-native-reanimated'; interface Params { holdDuration?: number; xScaleBounds?: readonly [number, number]; } interface ReturnType { x: Reanimated.SharedValue; y: Reanimated.SharedValue; isActive: Reanimated.SharedValue; gesture: PanGesture; } export declare function usePanGesture({ holdDuration, xScaleBounds, }: Params): ReturnType; export {};