import { HTMLAttributes } from 'react';
import { SizeProps } from 'styled-system';
export interface AvatarProps extends HTMLAttributes<HTMLDivElement>, SizeProps {
    /**
     * Wheather the avatar image is round
     */
    round?: boolean;
    /**
     * Path to the image source
     */
    src?: string;
}
