import { Parameter } from "./../index";
export interface FontInterface {
    name?: string;
    size?: number;
    underline?: boolean;
}
export declare class Font implements FontInterface, Parameter {
    name?: string;
    size?: number;
    underline?: boolean;
    constructor(data: any);
    static getNameDefault(): string;
    static getNameDescription(): string;
    static getSizeDefault(): number;
    static getSizeDescription(): string;
    static getUnderlineDefault(): boolean;
    static getUnderlineDescription(): string;
    static fromJson(data: any): Font;
    toJson(): any;
    clone(): Font;
}
