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