import { Size } from './Avatar.style'; export interface AvatarProps { /** The size of the avatar */ size: Size; /** Alt text for better accessibility */ alt?: string; /** The source of the image to be used as avatar */ src: string | null; } declare const Avatar: ({ src, alt, size, ...other }: AvatarProps) => JSX.Element; export default Avatar;