import { EasingType, type EasingTypeAlt, type IOptionLoader, type RecursivePartial } from "tsparticles-engine"; import type { IAttract } from "../Interfaces/IAttract"; export declare class Attract implements IAttract, IOptionLoader { distance: number; duration: number; easing: EasingType | EasingTypeAlt; factor: number; maxSpeed: number; speed: number; constructor(); load(data?: RecursivePartial): void; }