import React, { ReactNode } from 'react';
interface AvatarProps {
    children?: ReactNode;
    className?: string;
    [key: string]: any;
}
declare const Avatar: React.ForwardRefExoticComponent<Omit<AvatarProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
export default Avatar;
export type { AvatarProps };
//# sourceMappingURL=Avatar.d.ts.map