/** * Shared environment detection helpers. * * @internal */ /** * Returns whether development-only diagnostics should be enabled. * * Priority: * 1. Explicit global override via `globalThis.__BQUERY_DEV__` * 2. `process.env.NODE_ENV` * 3. Actual Node-like runtimes without `NODE_ENV` default to development * 4. Production-safe fallback (`false`) * * @internal */ export declare const detectDevEnvironment: () => boolean; //# sourceMappingURL=env.d.ts.map