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