/// import { OrchestrationViewProps } from './Orchestration'; interface Props { appName: string; sha: string; sn: string; visible: boolean; isDelete?: boolean; onClose: () => void; fetchRevision: OrchestrationViewProps['fetchRevision']; fetchRevisions: OrchestrationViewProps['fetchRevisions']; type: 'KUBERNETES' | 'HOST'; viewType?: 'sort' | 'components'; } declare const OrchestrationVersionDetail: (props: Props) => JSX.Element; export declare const OrchestrationVersionDetailDialog: any; export default OrchestrationVersionDetail;