import { FC, PropsWithChildren } from 'react'; import { TextProps } from '../../../Text'; export type AvatarFallbackProps = Exclude; /** * The AvatarFallback component provides a backup visual (such as initials) when an image * in the Avatar component fails to load or is not provided. It ensures graceful degradation * and consistent avatar rendering. * */ export declare const AvatarFallback: FC>;