import { Paragraph } from "./paragraph"; import { Table } from "./table"; export declare class Comment { id: number; _author: string; _date: string; children: (Paragraph | Table)[]; _parentCommentId: number; constructor(id: number); author(author: string): this; date(date: string): this; addParagraph(p: Paragraph): this; parentCommentId(id: number): this; }