export declare class Font {
    'name'?: Font.NameEnum;
    'color'?: string | null;
    'size'?: number | null;
    'style'?: Font.StyleEnum;
    'lineHeight'?: number | null;
    'isBoldFont'?: boolean;
    'isItalicFont'?: boolean;
    'isUnderLineFont'?: boolean;
    static discriminator: string | undefined;
    static attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
    }[];
}
export declare namespace Font {
    enum NameEnum {
        Helvetica,
        Courier,
        TimesRoman,
        NotoSans,
        Carlito
    }
    enum StyleEnum {
        Regular,
        Bold,
        Italic,
        Underline
    }
}
