import React from 'react'; import { FlintAvatar as FlintAvatarElement } from '@getufy/flint-ui/avatar/flint-avatar'; export interface FlintAvatarProps extends React.HTMLAttributes { /** Image source URL for the avatar. */ src?: string; /** Alt text for the avatar image. */ alt?: string; /** Initials to display when no image is provided. */ initials?: string; /** * Shape variant of the avatar. * Allowed values: 'circle' | 'square' | 'rounded' */ variant?: 'circle' | 'square' | 'rounded'; /** * Size of the avatar. * Allowed values: 'sm' | 'md' | 'lg' | 'xl' */ size?: 'sm' | 'md' | 'lg' | 'xl'; /** * Image loading strategy. * Allowed values: 'eager' | 'lazy' */ loading?: 'eager' | 'lazy'; } export declare const FlintAvatar: React.ForwardRefExoticComponent>;