diff --git a/types/ember/index.d.ts b/types/ember/index.d.ts
index 4e7ec4f74f..5a988c118c 100755
--- a/types/ember/index.d.ts
+++ b/types/ember/index.d.ts
@@ -118,23 +118,6 @@ import EmberResolver from '@ember/application/resolver';
// @ember/test
import EmberTestAdapter from '@ember/test/adapter';
-type Mix = B & Pick>;
-type Mix3 = Mix, C>;
-type Mix4 = Mix3, C, D>;
-type Mix5 = Mix4, C, D, E>;
-
-/**
- * Ember.Object.extend(...) accepts any number of mixins or literals.
- */
-type MixinOrLiteral = EmberMixin | T;
-
-/**
- * Ember.CoreView is an abstract class that exists to give view-like behavior to both Ember's main
- * view class Ember.Component and other classes that don't need the full functionality of Ember.Component.
- * Unless you have specific needs for CoreView, you will use Ember.Component in your applications.
- */
-export class CoreView extends Ember.Object.extend(Ember.Evented, Ember.ActionHandler) {}
-
export namespace Ember {
const A: typeof EmberArrayNs.A;
const isArray: typeof EmberArrayNs.isArray;
diff --git a/types/ember__component/checkbox.d.ts b/types/ember__component/checkbox.d.ts
index 27bfc81477..e0f9568f29 100644
--- a/types/ember__component/checkbox.d.ts
+++ b/types/ember__component/checkbox.d.ts
@@ -1,4 +1,3 @@
-import Ember from 'ember';
import Component from '@ember/component';
/**