import { ComponentProps } from 'react'; import { AvatarShape, Size } from '../../generated.js'; export type AvatarProps = Omit, "children"> & { name?: string | null; shape?: AvatarShape; size?: Size; src?: string | null; }; export declare function Avatar({ className, name, shape, size, src, ...props }: AvatarProps): import("react").JSX.Element;