import type { Container, IContainerPlugin, IPlugin, RecursivePartial } from "@tsparticles/engine"; import type { IZoomOptions, ZoomOptions } from "./types.js"; export declare class ZoomPlugin implements IPlugin { readonly id = "zoom"; getPlugin(container: Container): Promise; loadOptions(_container: Container, options: ZoomOptions, source?: RecursivePartial): void; needsPlugin(): boolean; }