import React from "react"; import { LinkProps } from "antd/lib/typography/Link"; export declare type FileFieldProps = LinkProps & { title?: string; src: string; }; /** * This field is used to display files and uses {@link https://ant.design/components/typography ``} from Ant Design. * * @see {@link https://refine.dev/docs/api-references/components/fields/file} for more details. */ export declare const FileField: React.FC;