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