import { type ICoordinates, type IOptionLoader, type RangeValue, type RecursivePartial } from "@tsparticles/engine"; import type { IAttract } from "../Interfaces/IAttract.js"; export declare class Attract implements IAttract, IOptionLoader { distance: RangeValue; enable: boolean; rotate: ICoordinates; constructor(); load(data?: RecursivePartial): void; }