import type { Rule } from 'eslint'; /** * ESLint rule: disallow block-bodied functions in EJS tags. * * Reports function declarations, function expressions, and arrow functions * when their body is a statement block (`{ ... }`). * * Arrow functions with concise expression bodies are allowed, e.g. * `items.filter(x => x.ok)` and `items.map(x => x.name)`. */ export declare const noFunctionBlock: Rule.RuleModule; //# sourceMappingURL=no-function-block.d.ts.map