import { AvatarProps } from './avatar.types'; /** * Avatar * ============================================================ * A small image or icon that identifies and personalizes the user within the interface. * Displays user images or automatically generates initials from first and last names. * Falls back to initials if image fails to load, and to a Person icon when no * usable initials can be derived. * * @see {@link https://nimbus-documentation.vercel.app/components/media/avatar} * * @supportsStyleProps * * @example * ```tsx * * ``` * * @example * ```tsx * // With initials fallback * * ``` * * @example * ```tsx * // No names provided — renders the Person icon and a generic localized label * * ``` */ export declare const Avatar: { (props: AvatarProps): import("react/jsx-runtime").JSX.Element; displayName: string; };