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<IPolygonMaskMove> {
    radius: number;
    type: PolygonMaskMoveType | keyof typeof PolygonMaskMoveType;
    constructor();
    load(data?: RecursivePartial<IPolygonMaskMove>): void;
}
