import { FunctionComponent } from "react"; import { ImageStyle, TextStyle, ViewStyle } from "react-native"; declare type InputType = 'none' | 'givenName' | 'password' | 'oneTimeCode' | 'telephoneNumber' | 'emailAddress' | 'username'; declare const TextInputComponent: FunctionComponent<{ type: InputType; label?: string; multiline?: boolean; placeholder: string; value: string; onChangeText: ((text: string) => void); onSubmitEditing?: (() => void); style?: ViewStyle | TextStyle | ImageStyle; }>; export { TextInputComponent };