import { ReactNode } from 'react';
export interface AvatarProps {
/**
* The URL of the image to display.
* @default undefined
* @example "https://example.com/avatar.jpg"
*/
src?: string;
/**
* Fallback content to display when the image fails to load.
* @default undefined
* @example JD
*/
fallback?: ReactNode;
/**
* The alternative text for the image.
* @default undefined
* @example "John Doe"
*/
alt?: string;
/**
* Additional class names to apply to the component.
* @default undefined
*/
className?: string;
}
export declare const Avatar: import('react').ForwardRefExoticComponent>;