1/**
2 * Copyright (c) Expo.
3 * Copyright (c) Nicolas Gallagher.
4 * Copyright (c) Facebook, Inc. and its affiliates.
5 *
6 * This source code is licensed under the MIT license found in the
7 * LICENSE file in the root directory of this source tree.
8 */
9import * as React from 'react';
10import { PlatformMethods, ViewProps } from 'react-native-web/dist/types';
11/**
12 * This is the View from react-native-web copied out in order to supply a custom `__element` property.
13 * In the past, you could use `createElement` to create an element with a custom HTML element, but this changed
14 * somewhere between 0.14...0.17.
15 */
16declare const View: React.AbstractComponent<ViewProps, HTMLElement & PlatformMethods>;
17export default View;
18//# sourceMappingURL=RNWView.d.ts.map