import { Parameter } from "./../index";
export interface FormValueStyleInterface {
    display?: string;
    _export?: string;
    isDefault?: boolean;
}
export declare class FormValueStyle implements FormValueStyleInterface, Parameter {
    display?: string;
    _export?: string;
    isDefault?: boolean;
    constructor(data: any);
    static getDisplayDefault(): string;
    static getDisplayDescription(): string;
    static getExportDefault(): string;
    static getExportDescription(): string;
    static getIsDefaultDefault(): boolean;
    static getIsDefaultDescription(): string;
    static fromJson(data: any): FormValueStyle;
    toJson(): any;
    clone(): FormValueStyle;
}
