import { type ICoordinatesWithMode, type IOptionLoader, type IParticlesOptions, type RecursivePartial } from "@tsparticles/engine"; import type { IManualParticle } from "../Interfaces/IManualParticle.js"; export declare class ManualParticle implements IManualParticle, IOptionLoader { options?: RecursivePartial; position?: ICoordinatesWithMode; load(data?: RecursivePartial): void; }