import * as React from "react"; import { AuthorTypes } from "../../types"; interface ImageProps { type: AuthorTypes; avatarUrl?: string; text: string; onClick?: (url: string) => void; } declare const Image: React.FC; export default Image;