import React from "react"; import { ImageProps } from "antd"; import { FieldProps } from "../../../interfaces"; export declare type ImageFieldProps = FieldProps & ImageProps & { imageTitle?: string; }; /** * This field is used to display images and uses {@link https://ant.design/components/image/#header ``} from Ant Design. * * @see {@link https://refine.dev/docs/api-references/components/fields/image} for more details. */ export declare const ImageField: React.FC;