import { default as React } from 'react'; import { StyleProps } from '../../style-engine'; declare const avatarStyles: import('../../style-engine').StylesDef<{ size: { sm: string; md: string; lg: string; xl: string; '2xl': string; }; shape: { circle: string; square: string; }; }>; type AvatarVariantProps = StyleProps; export interface AvatarProps extends Omit, keyof AvatarVariantProps>, AvatarVariantProps { src?: string; alt?: string; initials?: string; imageComponent?: React.ElementType; imageProps?: Record; } export declare function Avatar({ src, alt, initials, imageComponent: ImageComponent, imageProps, size, shape, className, ...props }: AvatarProps): React.JSX.Element; export {};