import type { BubbleContainer, BubbleMode, IBubbleMode } from "./Types.js"; import { type IDelta, type Particle, type PluginManager, type RecursivePartial } from "@tsparticles/engine"; import { ExternalInteractorBase, type IInteractivityData, type IModes, type InteractivityParticle, type Modes } from "@tsparticles/plugin-interactivity"; export declare class Bubbler extends ExternalInteractorBase { #private; handleClickMode: (mode: string, interactivityData: IInteractivityData) => void; constructor(pluginManager: PluginManager, container: BubbleContainer); get maxDistance(): number; clear(particle: Particle, _delta: IDelta, force?: boolean): void; init(): void; interact(interactivityData: IInteractivityData, delta: IDelta): void; isEnabled(interactivityData: IInteractivityData, particle?: InteractivityParticle): boolean; loadModeOptions(options: Modes & BubbleMode, ...sources: RecursivePartial<(IModes & IBubbleMode) | undefined>[]): void; reset(_interactivityData: IInteractivityData, particle: Particle): void; }