import { ReactNode } from 'react';
interface Props {
    id?: string;
    src?: string;
    name?: string;
    alt?: string;
    color?: string;
    size?: number;
    radius?: string;
    bordered?: boolean;
    disabled?: boolean;
    fallback?: ReactNode;
    className?: string;
    onClick?: () => void;
}
declare const Avatar: React.FC<Props>;
export default Avatar;
