import { Rule } from "eslint";

//#region src/rules/code-style/prefer-lookup-table.d.ts
/**
* ESLint rule: prefer-lookup-table
*
* Detects long chains of `||` checks against the same variable and suggests using a Set lookup or Array.includes.
*/
declare const rule: Rule.RuleModule;
//#endregion
export { rule as default };
//# sourceMappingURL=prefer-lookup-table.d.mts.map