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