import { type IOptionLoader, type RecursivePartial } from "@tsparticles/engine";
import type { ITextMaskLine } from "../Interfaces/ITextMaskLine.js";
export declare class TextMaskLine implements ITextMaskLine, IOptionLoader<ITextMaskLine> {
    separator: string;
    spacing: number;
    constructor();
    load(data?: RecursivePartial<ITextMaskLine> | undefined): void;
}
