export type CommentRequest = { id?: string; value?: string; requested?: string[]; coordinates?: string[]; }; export type Comment = { id: string; value: string; date: string; edited?: string; resolved?: boolean; name: string; user: string; picture: string; lexicon?: string; entry?: string; corpus?: string; document?: string; page?: string; sentence?: string; cid?: string; requested?: UserComment[]; keywords?: Record; type?: string; reply?: string; coordinates?: string[]; url?: string; }; export type UserComment = { uid: string; name: string; picture: string; email: string; read: boolean; dateRead?: string; }; export declare const EMPTY_COMMENT: Comment; export declare const EMPTY_COMMENT_REQUEST: CommentRequest;