/** * Copyright (c) 2025 Ofri Peretz * Licensed under the MIT License. Use of this source code is governed by the * MIT license that can be found in the LICENSE file. */ /** * ESLint Rule: no-unsafe-dynamic-require * Detects dynamic require() calls that could lead to code injection */ import type { TSESLint } from '@interlace/eslint-devkit'; export interface Options { /** Allow dynamic import() expressions. Default: false (stricter) */ allowDynamicImport?: boolean; } type RuleOptions = [Options?]; export declare const noUnsafeDynamicRequire: TSESLint.RuleModule<"unsafeDynamicRequire", RuleOptions, unknown, TSESLint.RuleListener> & { name: string; }; export {};