export declare class Comment {
    content: string;
    constructor(content: string);
    merge(other: Comment): Comment;
    empty(): boolean;
    equals(otherComment: Comment): boolean;
    toString(): string;
}
export declare function isComment(c: any): c is Comment;
