import React from "react";
type AvatarProps = {
    title: string;
    size?: number;
    shape?: "circle" | "square";
    color?: string;
};
export declare const Avatar: React.FC<AvatarProps>;
export {};
