import * as React from 'react'; import { View } from 'react-native'; import type { ZestUIComponentProps } from '../../types'; /** * Displays a user's profile picture, initials, or fallback icon. * Renders a ``. */ export declare function AvatarRoot(componentProps: AvatarRoot.Props): React.JSX.Element; export type ImageLoadingStatus = 'idle' | 'loading' | 'loaded' | 'error'; export interface AvatarRootState { /** * The image loading status. */ imageLoadingStatus: ImageLoadingStatus; } export interface AvatarRootProps extends ZestUIComponentProps { } export declare namespace AvatarRoot { type State = AvatarRootState; type Props = AvatarRootProps; type LoadingStatus = ImageLoadingStatus; } //# sourceMappingURL=AvatarRoot.d.ts.map