import { TextInput as RNInput } from 'react-native';
import { InputProps } from '../input';
import { InputWrapperAdditionalProps, InputWrapperProps } from '../input-wrapper';
type BaseInputProps = Omit<InputProps, 'styles'>;
export interface TextInputProps extends InputWrapperAdditionalProps, BaseInputProps {
    styles?: InputWrapperProps['styles'] & InputProps['styles'];
}
export declare const TextInput: import("react").ForwardRefExoticComponent<TextInputProps & import("react").RefAttributes<RNInput>>;
export {};
