import React, { HTMLAttributes } from 'react';
import type { BasePinchZoomProps } from './interface';
export interface PinchZoomProps extends HTMLAttributes<HTMLDivElement>, BasePinchZoomProps {
}
declare const PinchZoom: React.ForwardRefExoticComponent<PinchZoomProps & React.RefAttributes<unknown>>;
export default PinchZoom;
