declare function BaseAttachmentField(props: BaseAttachmentFieldProps): JSX.Element | any; type BaseAttachmentFieldProps = { src: string; title: string | ((record: any) => string) | JSX.Element; target: string; download: boolean | string; ping: string; rel: string; emptyText: string; source: string; className: string; disabled?: boolean; record: any; onClick: (e: any) => void; }; export { BaseAttachmentField }; export type { BaseAttachmentFieldProps }; //# sourceMappingURL=BaseAttachmentField.d.ts.map