/// import { TextStyle, ViewStyle } from "react-native"; import { MockInput } from "./MockInput"; type InputProps = { value: string; placeholder: string; onChange: (v: any) => void; maxLength?: number; style?: ViewStyle; maxValue?: number; inputStyle?: TextStyle; multiline?: boolean; placeholderTextColor?: string; }; declare function RealInput(props: InputProps): JSX.Element; export declare const NativeInput: typeof MockInput | typeof RealInput; export default NativeInput;