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