import React from 'react'; import type { FC } from 'react'; import type { AttachmentFile } from './type'; export interface AttachmentsProps { label: string; name: string; attachments: AttachmentFile[]; fieldDes?: string; fieldAttr?: string[]; fieldName: string; $$componentItem: { platform: 'h5' | 'pc'; Field?: FC; [key: string]: any; }; status?: string; basicStatus?: string; visible?: boolean; getEngineApis?: any; } declare const _default: React.ForwardRefExoticComponent & React.RefAttributes>; export default _default;