/// import "./Avatar.scss"; export type AvatarProps = { imageSrc: string; }; declare const CustomAvatar: ({ imageSrc }: AvatarProps) => JSX.Element; export default CustomAvatar;