import React, { ReactNode } from 'react'; import { TextProps } from 'antd/lib/typography/Text'; import { FieldProps } from '../../../interfaces/field'; export declare type TextFieldProps = FieldProps & TextProps; export declare const TextField: React.FC;