/** * Copyright (c) Double Symmetry GmbH * Commercial use requires a license. See https://rntp.dev/pricing */ declare const __DEV__: boolean | undefined; export const IS_DEV: boolean = typeof __DEV__ !== 'undefined' ? __DEV__ : typeof process !== 'undefined' && process.env != null && process.env.NODE_ENV !== 'production';