export declare class Font {
    name?: string;
    size?: number;
    italic?: boolean;
    bold?: boolean;
    color?: string;
}
