import { VerticalAlignment } from "./verticalAlignment";
import { MarginInfo } from "./marginInfo";
import { TextState } from "./textState";
import { Cell } from "./cell";
import { BorderInfo } from "./borderInfo";
import { Color } from "./color";
export declare class Row {
    'backgroundColor': Color;
    'border': BorderInfo;
    'cells': Array<Cell>;
    'defaultCellBorder': BorderInfo;
    'minRowHeight': number;
    'fixedRowHeight': number;
    'isInNewPage': boolean;
    'isRowBroken': boolean;
    'defaultCellTextState': TextState;
    'defaultCellPadding': MarginInfo;
    'verticalAlignment': VerticalAlignment;
    static discriminator: any;
    static attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
    }[];
}
