import React, { ReactNode } from "react"; import { TextProps } from "antd/lib/typography/Text"; import { FieldProps } from "../../../interfaces/field"; export declare type TextFieldProps = FieldProps & TextProps; /** * This field lets you show basic text. It uses Ant Design's {@link https://ant.design/components/typography/#Typography.Text ``} component. * * @see {@link https://refine.dev/docs/api-references/components/fields/text} for more details. */ export declare const TextField: React.FC;