import { type IOptionLoader, type IParticlesOptions, type RecursivePartial } from "@tsparticles/engine"; import type { ITrail } from "../Interfaces/ITrail.js"; export declare class Trail implements ITrail, IOptionLoader { delay: number; particles?: RecursivePartial; pauseOnStop: boolean; quantity: number; constructor(); load(data?: RecursivePartial): void; }