import AbstractFormComponent from '../Form/AbstractFormComponent';
import Props from './Props';
export default class Input extends AbstractFormComponent<Props, any> {
    static defaultProps: {
        defaultValue: string;
        underlineColorAndroid: string;
        validate: boolean;
    };
    state: any;
    textInput: any;
    constructor(props: Props);
    componentWillReceiveProps(nextProps: any): void;
    componentDidUpdate(): void;
    putFormField(): void;
    getValue(): any;
    isValid(): boolean;
    setFormFieldInfo(result: any): void;
    handleChangeText(value: any): void;
    focus(): void;
    render(): JSX.Element;
}
