import { type IOptionLoader, type RecursivePartial } from "@tsparticles/engine"; import { type ITrail } from "../Interfaces/ITrail.js"; import { TrailFill } from "./TrailFill.js"; export declare class Trail implements ITrail, IOptionLoader { enable: boolean; readonly fill: TrailFill; length: number; constructor(); load(data?: RecursivePartial): void; }