export declare class Comment {
    id: number;
    text: string;
    date: Date;
    user: string;
    entityId: number;
}
