/**



*/
/// <reference types="react" />
import { InputProps } from '../components';
interface ExtraProps {
    placeholder: string;
    disabled?: boolean;
}
export declare const TextField: (props: import("./fieldProps").FieldProps<InputProps & ExtraProps>) => JSX.Element;
export declare const TextFieldPlugin: {
    name: string;
    Component: (props: import("./fieldProps").FieldProps<InputProps & ExtraProps>) => JSX.Element;
    validate(value: any, values: any, meta: any, field: any): string;
    parse: (value?: string) => string;
};
export {};
