import { Parameter } from "./../index";
export interface KeywordInterface {
    keyword?: string;
}
export declare class Keyword implements KeywordInterface, Parameter {
    keyword?: string;
    constructor(data: any);
    static getKeywordDefault(): string;
    static getKeywordDescription(): string;
    static fromJson(data: any): Keyword;
    toJson(): any;
    clone(): Keyword;
}
