import React from "react"; import { Profile } from "./types"; interface AvatarProps { profile: Profile; } declare const Avatar: React.FC; export default Avatar;