import React from 'react'; import { BaseProps } from '../_utils/props'; export declare type AvatarShape = 'circle' | 'square'; export declare type AvatarPresence = 'online' | 'busy' | 'away' | 'offline'; export interface AvatarProps extends BaseProps { icon?: string; shape?: AvatarShape; size?: number; src?: string; presence?: AvatarPresence; alt?: string; onClick?: React.MouseEventHandler; children?: React.ReactNode; } declare const Avatar: React.FC & { Group?: any; }; export default Avatar;