import React from 'react'; import { ImageProps } from 'antd'; import { FieldProps } from '../../../interfaces'; export declare type ImageFieldProps = FieldProps & ImageProps & { imageTitle?: string; }; export declare const ImageField: React.FC;