/// import { OrchestrationViewProps } from '@/pages/App/Setting/Orchestration/Orchestration'; import { AppOrchestration } from '@/types'; declare const OrchestrationVersions: ({ appName, visible, relateApps, onClose, type, disabled, orchestrationMap, onLabelsChange, fetchRevisions, fetchRevision, compareOrchestration, }: { orchestrationMap: Record; appName: string; relateApps: OrchestrationViewProps; type: string; visible: boolean; disabled: boolean; onLabelsChange: OrchestrationViewProps; fetchRevisions: OrchestrationViewProps; fetchRevision: OrchestrationViewProps; compareOrchestration: OrchestrationViewProps; onClose: () => void; }) => JSX.Element; export default OrchestrationVersions;