-
- {
- // @ts-expect-error ts upgrade v4.7.4
- data &&
- }
-
-
- );
-};
diff --git a/x-pack/plugins/monitoring/public/components/enterprise_search/overview/index.ts b/x-pack/plugins/monitoring/public/components/enterprise_search/overview/index.ts
deleted file mode 100644
index ffea796a8904e..0000000000000
--- a/x-pack/plugins/monitoring/public/components/enterprise_search/overview/index.ts
+++ /dev/null
@@ -1,8 +0,0 @@
-/*
- * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
- * or more contributor license agreements. Licensed under the Elastic License
- * 2.0; you may not use this file except in compliance with the Elastic License
- * 2.0.
- */
-
-export { EnterpriseSearchOverview } from './overview';
diff --git a/x-pack/plugins/monitoring/public/components/enterprise_search/overview/overview.tsx b/x-pack/plugins/monitoring/public/components/enterprise_search/overview/overview.tsx
deleted file mode 100644
index 5c034b5ba3ad0..0000000000000
--- a/x-pack/plugins/monitoring/public/components/enterprise_search/overview/overview.tsx
+++ /dev/null
@@ -1,150 +0,0 @@
-/*
- * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
- * or more contributor license agreements. Licensed under the Elastic License
- * 2.0; you may not use this file except in compliance with the Elastic License
- * 2.0.
- */
-
-import React from 'react';
-import {
- EuiPage,
- EuiPageBody,
- EuiPageSection,
- EuiScreenReaderOnly,
- EuiPanel,
- EuiSpacer,
- EuiFlexGrid,
- EuiFlexItem,
-} from '@elastic/eui';
-import { FormattedMessage } from '@kbn/i18n-react';
-import { MonitoringTimeseriesContainer } from '../../chart';
-import { Status } from './status';
-
-export const EnterpriseSearchOverview: React.FC