export default class Helper extends React.PureComponent<any, any, any> {
    static propTypes: {
        title: PropTypes.Requireable<string>;
        error: PropTypes.Requireable<string>;
        disabled: PropTypes.Requireable<boolean>;
        style: any;
        baseColor: PropTypes.Requireable<string>;
        errorColor: PropTypes.Requireable<string>;
        focusAnimation: PropTypes.Requireable<Animated.Value>;
    };
    constructor(props: any);
    state: {
        errored: boolean;
        opacity: any;
    };
    componentDidMount(): void;
    listener: any;
    componentWillUnmount(): void;
    onAnimation({ value }: {
        value: any;
    }): void;
    animationValue: any;
    render(): JSX.Element | null;
}
import React from "react";
import PropTypes from "prop-types";
import { Animated } from "react-native";
