import React from 'react'; import { NormalSizes } from '../utils/prop-types'; import AvatarGroup from './avatar-group'; interface Props { src?: string; stacked?: boolean; text?: string; size?: NormalSizes | number; isSquare?: boolean; className?: string; } declare const defaultProps: { stacked: boolean; text: string; size: number | "mini" | "small" | "medium" | "large"; isSquare: boolean; className: string; }; declare type NativeAttrs = Omit & React.HTMLAttributes>, keyof Props>; export declare type AvatarProps = Props & typeof defaultProps & NativeAttrs; declare type MemoAvatarComponent

= React.NamedExoticComponent

& { Group: typeof AvatarGroup; }; declare type ComponentProps = Partial & Omit & NativeAttrs; declare const _default: MemoAvatarComponent; export default _default;