export * from './avatar'; import { SlottableViewProps, ViewRef, ComponentPropsWithAsChild } from '@rn-primitives/types'; import { Image } from 'react-native'; type RootProps = SlottableViewProps & { alt: string; }; type ImageProps = Omit, 'alt'> & { children?: React.ReactNode; onLoadingStatusChange?: (status: 'error' | 'loaded') => void; }; type FallbackProps = SlottableViewProps; type RootRef = ViewRef; type ImageRef = React.ElementRef; type FallbackRef = ViewRef; export type { FallbackProps, FallbackRef, ImageProps, ImageRef, RootProps, RootRef };