import * as React from 'react'; import { View } from 'react-native'; import type { AvatarRootState } from '../root/AvatarRoot'; import type { ZestUIComponentProps } from '../../types'; /** * Rendered when the image fails to load or when no image is provided. * Renders a ``. */ export declare function AvatarFallback(componentProps: AvatarFallback.Props): React.ReactElement> | null; export interface AvatarFallbackState extends AvatarRootState { } export interface AvatarFallbackProps extends ZestUIComponentProps { /** * How long to wait before showing the fallback. Specified in milliseconds. * @default 0 */ delay?: number | undefined; } export declare namespace AvatarFallback { type State = AvatarFallbackState; type Props = AvatarFallbackProps; } //# sourceMappingURL=AvatarFallback.d.ts.map