import { type Engine, type IOptionLoader, type RecursivePartial } from "@tsparticles/engine"; import type { IPolygonMaskDraw } from "../Interfaces/IPolygonMaskDraw.js"; import { PolygonMaskDrawStroke } from "./PolygonMaskDrawStroke.js"; export declare class PolygonMaskDraw implements IPolygonMaskDraw, IOptionLoader { enable: boolean; stroke: PolygonMaskDrawStroke; constructor(engine: Engine); load(data?: RecursivePartial): void; }