import React from 'react';
import { IButton } from '../Button/Button';
import { IElevation, IPropsAny } from '../types';
export declare type IAvatar = Omit<IButton, 'elevation'> & {
    image?: string;
    alt?: string;
    square?: boolean;
    elevation?: IElevation;
    TypeProps?: IPropsAny;
    InteractionProps?: IPropsAny;
};
declare const Avatar: React.FC<IAvatar>;
export default Avatar;
