import { type IOptionLoader, type RecursivePartial } from "@tsparticles/engine"; import { maxZoom, minZoom } from "../../Utils/Constants.js"; import type { IZoom } from "../Interfaces/IZoom.js"; declare const defaultZoom = 1; export declare class Zoom implements IZoom, IOptionLoader { enable: boolean; max: number; min: number; constructor(); load(data?: RecursivePartial): void; } export { defaultZoom, minZoom, maxZoom };