import type { HTMLAttributes, PropsWithChildren } from 'react';
interface AvatarProps extends HTMLAttributes<HTMLDivElement> {
    alt?: string;
    src?: string | undefined;
    srcSet?: string | undefined;
}
export declare function Avatar({ alt, src, srcSet, style, children, className, ...props }: PropsWithChildren<AvatarProps>): import("react/jsx-runtime").JSX.Element;
export {};
