import { CSSProperties } from "react"; export declare type AvatarSize = 'lg' | 'md' | 'sm'; export declare type AvatarColor = 'gray' | 'purple' | 'green' | 'red' | 'orange' | 'teal'; export interface AvatarProps { src?: string; alt: string; size?: AvatarSize; style?: CSSProperties; nearby?: boolean; color?: AvatarColor; }