import { type Engine } from "@tsparticles/engine"; export type { IZoom } from "./Options/Interfaces/IZoom.js"; export type { IZoomOptions, ZoomContainer, ZoomOptions } from "./types.js"; export { Zoom } from "./Options/Classes/Zoom.js"; export { initialTouchDistance, maxZoom, minZoom, touchCenterDivisor, touchPointIndexFirst, touchPointIndexSecond, touchPointsCount, zoomGestureFactor, zoomInFactor, zoomOutFactor, } from "./Utils/Constants.js"; export declare function loadZoomPlugin(engine: Engine): Promise;