import { Parameter } from "./../index";
export interface FreeTextFontInterface {
    bold?: boolean;
    color?: string;
    italic?: boolean;
    name?: string;
    size?: number;
}
export declare class FreeTextFont implements FreeTextFontInterface, Parameter {
    bold?: boolean;
    color?: string;
    italic?: boolean;
    name?: string;
    size?: number;
    constructor(data: any);
    static getBoldDefault(): boolean;
    static getBoldDescription(): string;
    static getColorDefault(): string;
    static getColorDescription(): string;
    static getItalicDefault(): boolean;
    static getItalicDescription(): string;
    static getNameDefault(): string;
    static getNameDescription(): string;
    static getSizeDefault(): number;
    static getSizeDescription(): string;
    static getSizeMin(): number;
    static getSizeMax(): number;
    static fromJson(data: any): FreeTextFont;
    toJson(): any;
    clone(): FreeTextFont;
}
