import { type Engine, type IOptionLoader, OptionsColor, type RecursivePartial } from "@tsparticles/engine"; import type { IPolygonMaskDrawStroke } from "../Interfaces/IPolygonMaskDrawStroke.js"; export declare class PolygonMaskDrawStroke implements IPolygonMaskDrawStroke, IOptionLoader { color: OptionsColor; opacity: number; width: number; private readonly _engine; constructor(engine: Engine); load(data?: RecursivePartial): void; }