export declare const GetInboxCommentsResponse: import("simple-runtypes").Runtype<{
    id: string;
    commentBody: string;
    authorDisplayName: string;
    postId: string;
    createdAt: Date;
    postAuthorUid: string;
    authorId: string;
    parentComment?: {
        commentId: string;
        authorUid: string;
    } | undefined;
}[]>;
