import { type IOptionLoader, type RecursivePartial, type SingleOrMultiple } from "@tsparticles/engine"; import { DivType } from "../../../Enums/DivType.js"; import type { IDivEvent } from "../../Interfaces/Events/IDivEvent.js"; export declare class DivEvent implements IDivEvent, IOptionLoader { enable: boolean; mode: SingleOrMultiple; selectors: SingleOrMultiple; type: DivType | keyof typeof DivType; constructor(); load(data?: RecursivePartial): void; }