import { PointerManager } from "../PointerManager.mjs"; import type { PinchUserGestureOptions } from "./PinchUserGesture.types.mjs"; /** * Implementation of the pinch gesture for testing. * * @param options - The options for the pinch gesture. * @param advanceTimers - Optional function to advance timers in tests. * @returns A promise that resolves when the pinch gesture is completed. */ export declare const pinch: (pointerManager: PointerManager, options: PinchUserGestureOptions, advanceTimers?: (ms: number) => Promise) => Promise;