import React from 'react';
import { type ComposableProps } from '../../../lib/slot';
export interface AvatarFallbackProps extends ComposableProps<'span'> {
/**
* Fallback content (typically initials or icon)
*/
children?: React.ReactNode;
}
/**
* AvatarFallback Component
*
* A composable component for displaying fallback content in an Avatar when image fails to load.
* Typically used within Avatar.
*
* @public
*
* @example
* ```tsx
*
*
* JD
*
* ```
*
* @remarks
* - Wraps the HTML `` element by default.
* - Supports `asChild` prop to merge props with a custom child element.
* - Automatically shown when AvatarImage fails to load.
*/
export declare const AvatarFallback: React.ForwardRefExoticComponent>;
//# sourceMappingURL=AvatarFallback.d.ts.map