import { AvatarImageProps as RadixAvatarImageProps } from '@radix-ui/react-avatar';
import * as React from 'react';
type AvatarImageProps = Omit<RadixAvatarImageProps, 'style' | 'width' | 'height' | 'slot' | 'asChild'>;
/**
 * The AvatarImage component displays an image for the avatar.
 */
declare const AvatarImage: React.ForwardRefExoticComponent<AvatarImageProps & React.RefAttributes<HTMLImageElement>>;
export { AvatarImage };
