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<IAttract> {
    distance: RangeValue;
    enable: boolean;
    rotate: ICoordinates;
    constructor();
    load(data?: RecursivePartial<IAttract>): void;
}
