import { type Container, type IDelta, type IParticleUpdater, type Particle, type PluginManager } from "@tsparticles/engine"; import type { PaintParticle } from "./Types.js"; export declare class PaintUpdater implements IParticleUpdater { private readonly _container; private readonly _pluginManager; constructor(pluginManager: PluginManager, container: Container); init(particle: PaintParticle): void; isEnabled(particle: PaintParticle): boolean; update(particle: Particle, delta: IDelta): void; }