import React, { HTMLAttributes } from 'react';
import { Colors } from '../colors';
export interface AvatarProps extends HTMLAttributes {
shape?: 'circle' | 'default' | Number;
size?: 'xl' | 'lg' | 'default' | 'md' | 'sm' | 'xs';
image?: any;
status?: {
indicator: 'info' | 'warning' | 'danger' | 'success' | 'grey';
count?: Number;
};
color?: Colors;
skeleton?: boolean;
wave?: boolean;
}
export interface AvatarListProps extends HTMLAttributes {
stacked?: boolean;
}
declare const Avatar: ({ className, style, shape, size, status, image, color, skeleton, wave, children, ...props }: AvatarProps) => React.JSX.Element;
export declare const AvatarList: ({ stacked, className, children, ...props }: AvatarListProps) => React.JSX.Element;
export default Avatar;