import { Cell, CompactLineBlock } from '../../index';
export declare class CompactLine {
    labelBlock: CompactLineBlock;
    textBlock: CompactLineBlock;
    constructor(labelOrHeaderCell: Cell | string, textOrCell: Cell | string);
    convertHeaderCellToBlock(cell: Cell): CompactLineBlock;
    convertCellToBlock(cell: Cell): CompactLineBlock;
    setLabelBlock(block: CompactLineBlock): void;
    setTextBlock(block: CompactLineBlock): void;
    build(): string;
}
//# sourceMappingURL=CompactLine.d.ts.map