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