import { ReactNode } from 'react';
interface AvatarProps {
    funcss?: string;
    children?: ReactNode;
    size?: string;
    bg?: string;
    content?: ReactNode;
}
export default function Avatar({ funcss, children, size, bg, content, }: AvatarProps): any;
export {};
