import type { RuleModule } from '../../types'; /** * Enforce using the global `process` instead of importing it from the * `process` module. In Node.js `process` is a global, so importing or * requiring it explicitly is unnecessary. * * Violations: * - `import process from 'process'` / `'node:process'` * - `const process = require('process')` */ export declare const preferGlobalProcess: RuleModule;