import React from 'react'; import { StyleProp, TextProps, TextStyle, ViewProps, ViewStyle } from 'react-native'; export interface ViewInterface extends ViewProps, TextProps { children?: React.ReactNode | React.ReactText; style?: StyleProp | StyleProp; } declare class AntmView extends React.PureComponent { render(): React.JSX.Element; } export default AntmView;