import { TextLine } from "./textLine";
import { VerticalAlignment } from "./verticalAlignment";
import { Rectangle } from "./rectangle";
import { TextHorizontalAlignment } from "./textHorizontalAlignment";
import { WrapMode } from "./wrapMode";
import { LineSpacing } from "./lineSpacing";
export declare class Paragraph {
    'lineSpacing': LineSpacing;
    'wrapMode': WrapMode;
    'horizontalAlignment': TextHorizontalAlignment;
    'leftMargin': number;
    'rightMargin': number;
    'topMargin': number;
    'bottomMargin': number;
    'rectangle': Rectangle;
    'rotation': number;
    'subsequentLinesIndent': number;
    'verticalAlignment': VerticalAlignment;
    'lines': Array<TextLine>;
    static discriminator: any;
    static attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
    }[];
}
