/**
 * @file index.tsx
 *
 * @fileoverview User Avatar component.
 */
/// <reference types="react" />
export interface AvatarProps {
    /**
     * Alt text for the user image.
     */
    alt: string;
    /**
     * Title for the user image.
     */
    title: string;
    /**
     * Size of the image.
     */
    size?: 'small' | 'medium';
    /**
     * Src of the image.
     */
    src?: string;
    /**
     * Status
     */
    status?: 'active' | 'hidden' | 'inactive';
}
/**
 * Display a user avatar image.
 */
export declare const Avatar: ({ status, size, title, src, ...props }: AvatarProps) => JSX.Element;
export default Avatar;
