import * as React from 'react';
export interface Props {
    error?: string;
    labelPositionLeft: boolean;
    onPress: () => void;
    title?: string;
    value: string;
}
export declare const TextInputContainer: React.ComponentType<Props>;
