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