import { Parameter } from "./../index";
export interface CommentRelationInterface {
    comment?: string;
    objectID?: string;
}
export declare class CommentRelation implements CommentRelationInterface, Parameter {
    comment?: string;
    objectID?: string;
    constructor(data: any);
    static getCommentDefault(): string;
    static getCommentDescription(): string;
    static getObjectIDDefault(): string;
    static getObjectIDDescription(): string;
    static fromJson(data: any): CommentRelation;
    toJson(): any;
    clone(): CommentRelation;
}
