import React from 'react'; import type { TabProps } from '@alifd/next/types/tab'; import type { SetterProps as OpinionSetterProps } from '@/components/form/opinion-form'; import './index.scss'; interface DiagramSetterProps { showDiagram: boolean; } interface AttachmentSetterProps { showAttachment: boolean; } export interface CbayelWorkflowTabContainerProps extends TabProps { getFormValues: any; validateForms: any; ctx: any; __designMode: 'design'; opinionProps: OpinionSetterProps & { workflowMode: 'start' | 'workflow'; }; attachmentProps: AttachmentSetterProps; diagramProps: DiagramSetterProps; } export declare const CbayelWorkflowTabContainer: React.FC; export {};