import React from 'react'; interface Props { src?: string; stacked?: boolean; text?: string; isSquare?: boolean; className?: string; } type NativeAttrs = Omit & React.HTMLAttributes>, keyof Props>; export type AvatarProps = Props & NativeAttrs; declare const Avatar: React.ForwardRefExoticComponent>; export default Avatar;