import { MMELComment } from '../serialize/interface/supportinterface'; export interface CommentInstance { id: string; username: string; message: string; timestamp: string; feedback: CommentInstance[]; resolved: boolean; } export declare function createNewComment(comments: Record, username: string, message: string): MMELComment; export declare function materialComments(id: string, getCommentById: (id: string) => MMELComment | undefined): CommentInstance | undefined; //# sourceMappingURL=Comments.d.ts.map