import { IRect, DocController } from '../doc_controller'; import { IPdfBrick, TranslateXFunction } from './pdf_brick'; export declare class RowlineBrick implements IPdfBrick { protected controller: DocController; color: string; xLeft: number; xRight: number; yTop: number; yBot: number; isPageBreak: boolean; constructor(controller: DocController, rect: IRect, color: string); get width(): number; get height(): number; render(): Promise; unfold(): IPdfBrick[]; translateX(_: TranslateXFunction): void; }