import React from 'react'; import type { BaseProps } from '../component-helpers'; export declare const AvatarSizes: readonly [32, 40, 48, 64, 80]; export declare const AvatarShapes: readonly ["circle", "square"]; type AvatarSizeVariants = (typeof AvatarSizes)[number]; type ResponsiveSizeMap = { narrow?: AvatarSizeVariants; regular?: AvatarSizeVariants; wide?: AvatarSizeVariants; }; export type AvatarProps = BaseProps & { size?: (typeof AvatarSizes)[number] | ResponsiveSizeMap; shape?: (typeof AvatarShapes)[number]; src: string; alt: string; ['data-testid']?: string; } & React.ImgHTMLAttributes; export declare const Avatar: React.ForwardRefExoticComponent & React.RefAttributes> & { testIds: { root: string; readonly image: string; }; }; export {};