type Props = {
    /**
     * Provide to use it as alt of the image for better a11y
     */
    username: string;
    /**
     * Image URL
     */
    imageUrl?: string;
    /**
     * Size of the circle container
     */
    size?: Size;
};
type Size = 'extra-large' | 'large' | 'medium' | 'small';
/**
 * Component for displaying user avatars with various sizes
 */
export declare function Avatar({ imageUrl, username, size }: Props): import("react/jsx-runtime").JSX.Element;
export {};
