import { type ReactNode, RefAttributes } from 'react';
import AvatarGroup from './AvatarGroup';
import { type AvatarProps } from './type';
interface IAvatar {
    (props: AvatarProps & RefAttributes<HTMLDivElement>): ReactNode;
    Group: typeof AvatarGroup;
}
declare const Avatar: IAvatar;
export default Avatar;
export { default as AvatarGroup } from './AvatarGroup';
export type * from './type';
