/**
 * @jsxRuntime classic
 * @jsx jsx
 */
import { type FC } from 'react';
import { type AppearanceType, type SizeType } from '../types';
interface AvatarImageProps {
    appearance: AppearanceType;
    size: SizeType;
    alt?: string;
    src?: string;
    testId?: string;
    imgLoading?: 'lazy' | 'eager';
}
/**
 * __Avatar image__
 *
 * An avatar image is an internal component used to control the rendering phases of an image.
 */
declare const AvatarImage: FC<AvatarImageProps>;
export default AvatarImage;
