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 | number;
    constructor();
    load(data?: RecursivePartial<IFontTextMask> | undefined): void;
}
