declare module 'ember-data/-private/core' {
  import Namespace from "@ember/application/namespace";
  export interface DS extends Namespace {
  	VERSION: string;
  	name: string;
  }
  export const DS: DS;
  export default DS;
  
}