import * as React from 'react'; import { FallbackProps, FallbackRef, ImageProps, ImageRef, RootProps, RootRef } from './index.js'; import './avatar'; import '@rn-primitives/types'; import 'react-native'; type RootComponentProps = RootProps & React.RefAttributes; declare const Root: { ({ asChild, alt, ref, ...viewProps }: RootComponentProps): React.JSX.Element; displayName: string; }; type ImageComponentProps = ImageProps & React.RefAttributes; declare const Image: { ({ asChild, onLoad: onLoadProps, onError: onErrorProps, onLoadingStatusChange, ref, ...props }: ImageComponentProps): React.JSX.Element | null; displayName: string; }; type FallbackComponentProps = FallbackProps & React.RefAttributes; declare const Fallback: { ({ asChild, ref, ...props }: FallbackComponentProps): React.JSX.Element | null; displayName: string; }; export { Fallback, Image, Root };