import { TextInputProps } from "react-native";
interface ITextFieldProps extends TextInputProps {
    width?: number | string;
    textFieldStyle?: any;
}
declare const TextField: (props: ITextFieldProps) => JSX.Element;
export default TextField;
