import { Ref } from 'react'; import { AvatarSize } from './avatarTypes'; export interface AvatarBaseProps { imageUrl?: string; size: AvatarSize; name?: string; className?: string; isLoading?: boolean; fallbackType?: "initials" | "defaultAvatar"; ref?: Ref; } export declare function AvatarBase({ ref, imageUrl, size, isLoading, className, name, fallbackType, }: AvatarBaseProps): import("react/jsx-runtime").JSX.Element;