import { FontStyles } from "./fontStyles";
import { Color } from "./color";
export declare class TextState {
    'fontSize': number;
    'font': string;
    'foregroundColor': Color;
    'backgroundColor': Color;
    'fontStyle': FontStyles;
    'fontFile': string;
    'underline': boolean;
    'strikeOut': boolean;
    'superscript': boolean;
    'subscript': boolean;
    static discriminator: any;
    static attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
    }[];
}
