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