import React from 'react'; import { CommonProps } from './types/common'; export interface ImageAvatarProps extends CommonProps { src: string; alt: string; } export declare const ImageAvatar: React.ForwardRefExoticComponent>;