import type { HostComponent, ViewProps } from 'react-native'; import type { DirectEventHandler } from 'react-native/Libraries/Types/CodegenTypes'; import type { UnsafeMixed } from './codegenUtils'; type OnImageMissingEventType = { type: string; payloadRenamed: { imageKey: string; }; }; export interface NativeProps extends ViewProps { images: UnsafeMixed; nativeImages: UnsafeMixed>; hasOnImageMissing: UnsafeMixed; onImageMissing: DirectEventHandler; } declare const _default: HostComponent; export default _default; //# sourceMappingURL=RNMBXImagesNativeComponent.d.ts.map