import { type IOptionLoader, type RecursivePartial } from "@tsparticles/engine"; import type { IPolygonMaskMove } from "../Interfaces/IPolygonMaskMove.js"; import { PolygonMaskMoveType } from "../../Enums/PolygonMaskMoveType.js"; export declare class PolygonMaskMove implements IPolygonMaskMove, IOptionLoader { radius: number; type: PolygonMaskMoveType | keyof typeof PolygonMaskMoveType; constructor(); load(data?: RecursivePartial): void; }