import { type IOptionLoader, type RecursivePartial, type SingleOrMultiple } from "@tsparticles/engine"; import { BubbleBase } from "./BubbleBase.js"; import { BubbleDiv } from "./BubbleDiv.js"; import type { IBubble } from "../Interfaces/IBubble.js"; export declare class Bubble extends BubbleBase implements IBubble, IOptionLoader { divs?: SingleOrMultiple; load(data?: RecursivePartial): void; }