import { Parameter, InfoType } from "./../index";
export interface InfoInterface {
    infoType: InfoType;
}
export declare class Info implements InfoInterface, Parameter {
    infoType: InfoType;
    constructor(data: any);
    static getInfoTypeDefault(): InfoType;
    static getInfoTypeDescription(): string;
    static fromJson(data: any): Info;
    toJson(): any;
    clone(): Info;
}
