import React, { CSSProperties, HTMLAttributes } from 'react';
export type Props = {
    size?: number;
    style?: CSSProperties;
    className?: string;
    avatar?: string;
    username?: string;
    isMarryBaby?: boolean;
} & HTMLAttributes<HTMLDivElement>;
declare const UserAvatar: ({ className, isMarryBaby: isMarryBabyProp, style, avatar, username, size, ...rest }: Props) => React.JSX.Element;
export { UserAvatar };
