import React, { ReactNode, FC } from 'react'; import { IconProps } from '../Icon/index.js'; export declare type AvatarSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl' | '3xl'; export declare type AvatarRounded = 'none' | 'sm' | 'md' | 'full'; export declare type AvatarProps = React.ComponentProps<'div'> & { size?: AvatarSize; src?: string | null; name?: string; icon?: IconProps | ReactNode; rounded?: AvatarRounded; }; export declare const Avatar: FC;