import React from 'react';

type RadiusType = "full" | "inherit" | "none";

interface AvatarProps {
    isUploadable?: boolean;
    src?: string;
    alt?: string;
    size?: "2xs" | "xs" | "sm" | "default" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl";
    radius?: RadiusType;
    className?: string;
    icon?: React.ReactNode;
    hideIcon?: boolean;
}
declare const Avatar: React.FC<AvatarProps>;

export { Avatar };
