import { IconSize } from "../../shared/types/iconSize"; export interface AvatarProps { /** * URL for the image displayed */ src: string; /** * Text a screenreader will read aloud to describe the image */ label?: string; /** * Which icon size to use for the width and height */ size?: IconSize; } declare const Avatar: ({ label, src, size }: AvatarProps) => JSX.Element; export default Avatar;