import React from 'react'; import { GlobalProps } from '../utilities/globalProps'; export declare type AvatarProps = { aria?: { [key: string]: string; }; className?: string; data?: { [key: string]: string; }; dark?: boolean; id?: string; imageAlt?: string; imageUrl?: string; name?: string; size?: "md" | "lg" | "sm" | "xl" | "xs" | "xxs"; status?: "away" | "offline" | "online"; } & GlobalProps; declare const Avatar: (props: AvatarProps) => React.ReactElement; export default Avatar;