import React, { HTMLAttributes } from 'react';
export declare type TAvatar = HTMLAttributes & {
className?: string;
label?: string;
src?: string;
color?: string;
colorCustom?: boolean;
rounded?: 'none' | 'sm' | 'md' | 'lg' | 'xl' | '2xl' | '3xl' | 'full';
size?: 'sm' | 'md' | 'lg' | 'xl';
textSize?: string;
};
export declare const Avatar: React.ForwardRefExoticComponent & {
className?: string | undefined;
label?: string | undefined;
src?: string | undefined;
color?: string | undefined;
colorCustom?: boolean | undefined;
rounded?: "none" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | undefined;
size?: "sm" | "md" | "lg" | "xl" | undefined;
textSize?: string | undefined;
} & React.RefAttributes>;
export default Avatar;