import { Base, BaseConstructorPayload } from "./Base"; export type CommentConstructorPayload = { /** * Contain the plain text of the incoming html */ htmlText: string; /** * Raw html string */ html: string; /** * Account Id that the coment belong to */ accountId: string; } & BaseConstructorPayload; export declare class Comment extends Base { private _htmlText; private _html; private _accountId; constructor(payload: CommentConstructorPayload); get htmlText(): string; get html(): string; get accountId(): string; toObject(): { htmlText: string; html: string; accountId: string; }; } //# sourceMappingURL=Comment.d.ts.map