import * as React from 'react'; export interface CbayelWorkflowAttachmentProps { ctx: any; __designMode: 'design'; } export interface ResDocPhyInfoDTO { docId: string; docPath: string; bizId?: any; fileNm: string; docTypeNm?: any; genOprId: string; genOprNm?: any; docStatCd: string; genTime: string; } export interface File { docListDefId: string; bizDocListId: string; bizDocListDtlId: string; bizTypeCd?: any; bizSubTypeCd?: any; bizId?: any; docTypeNm: string; docTypeId: string; docTypeNumber: string; docStatCd: string; custDocTypeInd: boolean; lockdInd?: any; seqNbr: number; resDocPhyInfoDTO: ResDocPhyInfoDTO; updateTime: string; docCateNm: string; ownerClear: boolean; docformat: string; } declare const WorkflowAttachment: React.FC; export default WorkflowAttachment;