import React from 'react'; import { type ComposableProps } from '../../../lib/slot'; export interface AvatarImageProps extends ComposableProps<'img'> { /** * Image source URL */ src: string; /** * Alt text for the image */ alt?: string; } /** * AvatarImage Component * * A composable component for displaying an image in an Avatar. * Typically used within Avatar. * * @public * * @example * ```tsx * * * * ``` * * @remarks * - Wraps the HTML `` element by default. * - Supports `asChild` prop to merge props with a custom child element. */ export declare const AvatarImage: React.ForwardRefExoticComponent>; //# sourceMappingURL=AvatarImage.d.ts.map