import { ColorsType } from '../../theme/colors'; export declare type AvatarSize = 'small' | 'medium' | 'large'; export declare type AvatarType = 'icon' | 'initials' | 'image'; export declare type AvatarProps = { size?: AvatarSize; type: AvatarType; name: string; url?: string; color?: ColorsType; };