import { Segment } from "./segment";
import { TextHorizontalAlignment } from "./textHorizontalAlignment";
export declare class TextLine {
    'horizontalAlignment': TextHorizontalAlignment;
    'segments': Array<Segment>;
    static discriminator: any;
    static attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
    }[];
}
