import * as React from "react"; import { AuthorTypes } from "../../types"; interface MessageProps { type: AuthorTypes; avatarUrl?: string; text: string; } declare const Message: React.FC; export default Message;