import { type IOptionLoader, type RecursivePartial } from "@tsparticles/engine"; import type { IMotion } from "../Interfaces/IMotion.js"; import { MotionReduce } from "./MotionReduce.js"; export declare class Motion implements IMotion, IOptionLoader { disable: boolean; reduce: MotionReduce; constructor(); load(data?: RecursivePartial): void; }