/**
* File Name: Avatar
*/
/** @jsx jsx */
import React from 'react';
import { ICoreBase } from '../../core';
export interface Iavatar extends ICoreBase {
    color?: Color;
    ariaLabel?: string;
    src?: string;
    initials?: string;
    size?: Size;
    alt?: string;
}
declare type Color = "primary" | "secondary" | "success" | "warning" | "danger" | "info" | "light" | "dark";
declare type Size = 'small' | 'medium' | 'large';
export declare const Avatar: React.ForwardRefExoticComponent<Iavatar & React.RefAttributes<HTMLDivElement>>;
export {};
