/** */ import * as React from 'react'; declare type a = React.DetailedHTMLProps, HTMLInputElement>; export interface TextFieldProps extends a { error?: boolean; ref?: any; } export declare const textFieldClasses = "shadow-inner focus:shadow-outline focus:border-blue-500 focus:outline-none block text-base placeholder:text-gray-300 px-3 py-2 text-gray-600 w-full bg-white border border-gray-200 transition-all ease-out duration-150 focus:text-gray-900 rounded-md"; export declare const BaseTextField: React.ForwardRefExoticComponent, HTMLInputElement>, "key" | keyof React.InputHTMLAttributes> & React.RefAttributes>; export {};