import React from 'react';
import { BaseComponentProps } from '../../types';
export interface AvatarProps extends BaseComponentProps {
    src?: string;
    alt?: string;
    size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl';
    fallback?: string;
    shape?: 'circle' | 'square';
}
declare const Avatar: React.FC<AvatarProps>;
export default Avatar;
