export declare type PostsComments = { id: number; postId?: number | null; createdBy?: number | null; hiddenBy?: number | null; body: string; notificationsSent: PostsComments.notificationsSent; likeCount: number; dislikeCount: number; checked?: boolean | null; status: PostsComments.status; visibility: PostsComments.visibility | null; createdAt: string; updatedAt: string; deletedAt?: string | null; }; export declare namespace PostsComments { enum notificationsSent { FALSE = "false", TRUE = "true" } enum status { UNREPORTED = "unreported", REPORTED = "reported", SOLVED = "solved" } enum visibility { HIDDEN = "hidden", RESTRICTED = "restricted", COMMENTER_ONLY = "commenter_only", DISABLED = "disabled", ENABLED = "enabled" } }