import { HTMLAttributes, ReactNode } from 'react';
export interface AvatarProps extends HTMLAttributes {
shape?: 'rounded' | 'square' | 'circle';
size?: 'sm' | 'md' | 'lg';
icon?: ReactNode;
src?: string;
srcSet?: string;
alt?: string;
}
declare const Avatar: import("react").ForwardRefExoticComponent>;
export default Avatar;