import * as React from "react"; 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; /** * Allows custom styling */ className?: string; /** * Human-readable selector used for writing tests */ "data-cy"?: string; } declare const Avatar: ({ label, src, className, size, "data-cy": dataCy }: AvatarProps) => React.JSX.Element; export default Avatar;