import { type IOptionLoader, type RecursivePartial, type SingleOrMultiple } from "@tsparticles/engine"; import { ClickEvent } from "./ClickEvent.js"; import { DivEvent } from "./DivEvent.js"; import { HoverEvent } from "./HoverEvent.js"; import type { IEvents } from "../../Interfaces/Events/IEvents.js"; export declare class Events implements IEvents, IOptionLoader { readonly onClick: ClickEvent; onDiv: SingleOrMultiple; readonly onHover: HoverEvent; constructor(); load(data?: RecursivePartial): void; }