import { type IDelta, type IParticleTransformValues, type IParticleUpdater, type Particle, type RecursivePartial } from "tsparticles-engine"; import type { IRollParticlesOptions, RollParticle, RollParticlesOptions } from "./Types"; export declare class RollUpdater implements IParticleUpdater { getTransformValues(particle: Particle): IParticleTransformValues; init(particle: RollParticle): void; isEnabled(particle: RollParticle): boolean; loadOptions(options: RollParticlesOptions, ...sources: (RecursivePartial | undefined)[]): void; update(particle: Particle, delta: IDelta): void; }