import { Parameter } from "./../index";
export interface CustomDescriptionInterface {
    key?: string;
    value?: string;
}
export declare class CustomDescription implements CustomDescriptionInterface, Parameter {
    key?: string;
    value?: string;
    constructor(data: any);
    static getKeyDefault(): string;
    static getKeyDescription(): string;
    static getValueDefault(): string;
    static getValueDescription(): string;
    static fromJson(data: any): CustomDescription;
    toJson(): any;
    clone(): CustomDescription;
}
