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