import { type SharedValue } from 'react-native-reanimated'; import type { BoundsFuction, SizeVector, TapGestureEvent, Vector } from '../types'; type DoubleTapOptions = { container: SizeVector>; translate: Vector>; scale: SharedValue; minScale: number; maxScale: SharedValue; scaleOffset: SharedValue; boundsFn: BoundsFuction; onGestureEnd?: () => void; }; export declare const useDoubleTapCommons: ({ container, translate, scale, minScale, maxScale, scaleOffset, boundsFn, onGestureEnd, }: DoubleTapOptions) => { onDoubleTapStart: () => void; onDoubleTapEnd: (event: TapGestureEvent) => void; enablePanGestureByDoubleTap: boolean; }; export {}; //# sourceMappingURL=useDoubleTapCommons.d.ts.map