import { codegenNativeComponent, type CodegenTypes, type HostComponent, type ViewProps, } from "react-native"; import type { UnsafeMixed } from "../../types/codegen/UnsafeMixed"; type ImageMissingEvent = { image: string; }; export type NativeImageEntry = { uri: string; scale?: CodegenTypes.Double; sdf?: boolean; }; export interface NativeProps extends ViewProps { images?: UnsafeMixed>; onImageMissing?: CodegenTypes.DirectEventHandler; } export default codegenNativeComponent( "MLRNImages", ) as HostComponent;