import * as React from "react"; import { ViewProps } from "react-native"; import { RNITextInputWrapperViewProps } from "../../native_components/RNITextInputWrapperView"; export type TextInputWrapperViewInheritedProps = Partial>; export type TextInputWrapperViewBaseProps = { // TBA }; // prettier-ignore export type TextInputWrapperViewProps = & TextInputWrapperViewInheritedProps & TextInputWrapperViewBaseProps & ViewProps;