import { Context2d } from 'jspdf';
import { IRowElement } from '../../../interface/Row';
import { DrawPdf } from '../DrawPdf';

export declare class LineBreakParticle {
    private options;
    static readonly WIDTH = 12;
    static readonly HEIGHT = 9;
    static readonly GAP = 3;
    constructor(draw: DrawPdf);
    render(ctx2d: Context2d, element: IRowElement, x: number, y: number): void;
}
