import { type IOptionLoader, type RecursivePartial } from "@tsparticles/engine"; import { GrabLinks } from "./GrabLinks.js"; import type { IGrab } from "../Interfaces/IGrab.js"; export declare class Grab implements IGrab, IOptionLoader { distance: number; readonly links: GrabLinks; load(data?: RecursivePartial): void; }