import React from "react"; interface AvatarProps { src?: string; content?: string; size?: "sm" | "lg"; className?: string; rounded?: boolean; square?: boolean; children?: any; [x: string]: any; } export declare const Avatar: ({ src, content, size, className, rounded, square, children, ...props }: AvatarProps) => React.JSX.Element; export {};