import React, { HTMLAttributes } from 'react';
export interface TextInputProps extends HTMLAttributes<HTMLInputElement> {
    error?: boolean;
    disabled?: boolean;
}
export declare const TextInput: React.ForwardRefExoticComponent<TextInputProps & React.RefAttributes<HTMLInputElement>>;
