1/**
2 * Copyright (c) Meta Platforms, Inc. and affiliates.
3 *
4 * This source code is licensed under the MIT license found in the
5 * LICENSE file in the root directory of this source tree.
6 *
7 * @format
8 * @flow strict-local
9 */
10
11'use strict';
12
13import type {HostComponent} from '../Renderer/shims/ReactNativeTypes';
14import type {ViewProps} from '../Components/View/ViewPropTypes';
15import type {ImageResizeMode} from './ImageResizeMode';
16import * as NativeComponentRegistry from '../NativeComponent/NativeComponentRegistry';
17import type {ColorValue} from '../StyleSheet/StyleSheet';
18
19type NativeProps = $ReadOnly<{
20  ...ViewProps,
21  resizeMode?: ?ImageResizeMode,
22  src?: ?$ReadOnlyArray<?$ReadOnly<{uri?: ?string, ...}>>,
23  tintColor?: ?ColorValue,
24  headers?: ?{[string]: string},
25}>;
26
27declare export default HostComponent<NativeProps>;
28