import { FC } from 'react'; import { IconPropsStrict } from '../Icon'; export declare const allowedRandomColors: string[]; export interface AvatarPropsStrict { /** Automatically apply a randomized and consistent color */ autoColor?: boolean; /** Additional classes */ className?: string; /** Apply a solid colored background */ color?: string; /** Image URL, replaces initials and color with image */ image?: string; /** Initials will be generated from a full name string. To be required in future. */ name?: string; /** Turn Avatar into a Rounded Square instead of Circle */ rounded?: boolean; /** Size of Avatar */ size?: 's' | 'm' | 'l'; /** Icon Name */ icon?: IconPropsStrict['name']; } export interface AvatarProps extends AvatarPropsStrict { /** Unstrict Props */ [propName: string]: any; } export declare const Avatar: FC;