import { ImageFragment } from "./imageFragment";
import { VerticalAlignment } from "./verticalAlignment";
import { TextRect } from "./textRect";
import { TextState } from "./textState";
import { HorizontalAlignment } from "./horizontalAlignment";
import { Color } from "./color";
import { BorderInfo } from "./borderInfo";
import { MarginInfo } from "./marginInfo";
export declare class Cell {
    'isNoBorder': boolean;
    'margin': MarginInfo;
    'border': BorderInfo;
    'backgroundColor': Color;
    'backgroundImageFile': string;
    'backgroundImageStorageFile': string;
    'alignment': HorizontalAlignment;
    'defaultCellTextState': TextState;
    'paragraphs': Array<TextRect>;
    'isWordWrapped': boolean;
    'verticalAlignment': VerticalAlignment;
    'colSpan': number;
    'rowSpan': number;
    'width': number;
    'htmlFragment': string;
    'images': Array<ImageFragment>;
    static discriminator: any;
    static attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
    }[];
}
