import { type Container, Vector } from "@tsparticles/engine"; import type { BrownianPathParticle } from "./BrownianPathParticle.js"; import type { IBrownianPathOptions } from "./IBrownianPathOptions.js"; import { type IMovePathGenerator } from "@tsparticles/plugin-move"; export declare class BrownianPathGenerator implements IMovePathGenerator { #private; readonly options: IBrownianPathOptions; constructor(container: Container); generate(p: BrownianPathParticle): Vector; init(): void; reset(p: BrownianPathParticle): void; update(): void; }