import { FieldProps } from "../../models"; interface TextFieldProps extends FieldProps { allowInfinity?: boolean; } /** * Generic text field. * This is one of the internal components that get mapped natively inside forms * and tables to the specified properties. * @category Form fields */ export declare function TextField({ name, value, setValue, error, showError, disabled, autoFocus, property, includeDescription, allowInfinity, shouldAlwaysRerender }: TextFieldProps): import("@emotion/react/jsx-runtime").JSX.Element; export {};