import React from 'react'; import { TextInput, ViewStyle } from 'react-native'; import { ManualInputDefault } from '../types'; declare type Props = { iconUrl: string; containerStyle?: ViewStyle; defaultValue: ManualInputDefault; onInputChange: (text: string) => void; errorText?: string; maxLength?: number; }; export declare const InputWithIcon: React.ForwardRefExoticComponent>; export {};