/**
 * A message that a moderator sent regarding the project
 * @deprecated
 */
export type ModeratorMessage = {
    /**
     * The message that a moderator has left for the project
     */
    message?: string;
    /**
     * The longer body of the message that a moderator has left for the project
     */
    body?: string | null;
};
