import { type IDimension, type IOptionLoader, type RecursivePartial, type SingleOrMultiple } from "@tsparticles/engine";
import type { IPolygonMaskLocalSvg } from "../Interfaces/IPolygonMaskLocalSvg.js";
export declare class PolygonMaskLocalSvg implements IPolygonMaskLocalSvg, IOptionLoader<IPolygonMaskLocalSvg> {
    path: SingleOrMultiple<string>;
    size: IDimension;
    constructor();
    load(data?: RecursivePartial<IPolygonMaskLocalSvg>): void;
}
