import { Touch } from 'react'; export declare const pinchOrZoom: (event: TouchEvent, cache: Record) => false | { action: string; coords?: undefined; } | { action: string; coords: number[]; };