import { type IOptionLoader, type RecursivePartial } from "@tsparticles/engine";
import type { IFontTextMask } from "../Interfaces/IFontTextMask.js";
export declare class FontTextMask implements IFontTextMask, IOptionLoader<IFontTextMask> {
    family: string;
    size: string | number;
    style: string;
    variant: string;
    weight: string;
    load(data?: RecursivePartial<IFontTextMask>): void;
}
