import type { Image } from "react-native"; import type { ComponentPropsWithAsChild, SlottableViewProps, ViewRef } from "../types"; export type RootProps = SlottableViewProps & { alt: string; }; export type ImageProps = Omit, "alt"> & { children?: React.ReactNode; onLoadingStatusChange?: (status: "error" | "loaded") => void; }; export type FallbackProps = SlottableViewProps; export type RootRef = ViewRef; export type ImageRef = React.ElementRef; export type FallbackRef = ViewRef; //# sourceMappingURL=types.d.ts.map