declare module '@ember/-internals/environment/lib/env' { /** The hash of environment variables used to control various configuration settings. To specify your own or override default settings, add the desired properties to a global hash named `EmberENV` (or `ENV` for backwards compatibility with earlier versions of Ember). The `EmberENV` hash must be created before loading Ember. @class EmberENV @type Object @public */ export const ENV: { ENABLE_OPTIONAL_FEATURES: boolean; /** Determines whether Ember should add to `Array` native object prototypes, a few extra methods in order to provide a more friendly API. The behavior from setting this option to `true` was deprecated in Ember 5.10. @property EXTEND_PROTOTYPES @type Boolean @default true @for EmberENV @private @deprecated in v5.10 */ EXTEND_PROTOTYPES: { Array: boolean; }; /** The `LOG_STACKTRACE_ON_DEPRECATION` property, when true, tells Ember to log a full stack trace during deprecation warnings. @property LOG_STACKTRACE_ON_DEPRECATION @type Boolean @default true @for EmberENV @public */ LOG_STACKTRACE_ON_DEPRECATION: boolean; /** The `LOG_VERSION` property, when true, tells Ember to log versions of all dependent libraries in use. @property LOG_VERSION @type Boolean @default true @for EmberENV @public */ LOG_VERSION: boolean; RAISE_ON_DEPRECATION: boolean; STRUCTURED_PROFILE: boolean; /** Whether to perform extra bookkeeping needed to make the `captureRenderTree` API work. This has to be set before the ember JavaScript code is evaluated. This is usually done by setting `window.EmberENV = { _DEBUG_RENDER_TREE: true };` before the "vendor" `