import { UserAvatarVariants } from './User.css';
import { PropsWithBox } from '../../Box';
import { DataAttributes } from '../../types';

export type UserAvatarProps = PropsWithBox<DataAttributes & {
    className?: string;
    initials?: string;
    src?: string;
}> & UserAvatarVariants;
export declare const User: {
    (props: UserAvatarProps): JSX.Element;
    displayName: string;
};
