import React from "react"; import { FieldProps } from "@firecms/core"; /** * Generic text field. * This is one of the internal components that get mapped natively inside forms * and tables to the specified properties. * @group Form fields */ export declare const EnhanceTextFieldBinding: React.MemoExoticComponent<(({ propertyKey, value, setValue, error, showError, disabled, autoFocus, property, includeDescription, highlight, size }: FieldProps & { highlight?: string; }) => React.JSX.Element)>;