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