import { type IOptionLoader, OptionsColor, type RecursivePartial, type SingleOrMultiple } from "@tsparticles/engine"; import type { IBubbleBase } from "../Interfaces/IBubbleBase.js"; export declare abstract class BubbleBase implements IBubbleBase, IOptionLoader { color?: SingleOrMultiple; distance: number; duration: number; mix: boolean; opacity?: number; size?: number; constructor(); load(data?: RecursivePartial): void; }