export interface WebRxReactGlobals { readonly DEBUG: boolean; readonly PRODUCTION: boolean; readonly TEST: boolean; readonly WEBPACK_DEV_SERVER: boolean; readonly VERSION: string; } declare global { namespace NodeJS { interface Global extends WebRxReactGlobals { } } const PRODUCTION: typeof global.PRODUCTION; const TEST: typeof global.TEST; const WEBPACK_DEV_SERVER: typeof global.WEBPACK_DEV_SERVER; const VERSION: typeof global.VERSION; } export { version } from './version';