import type { Rule } from 'eslint'; /** * ESLint rule: prefer `<%_ … _%>` (whitespace-slurping) over `<% … %>` * for **code-only** tags (not output tags) whose content has balanced braces * and does not open or close a brace block by itself. * * The rule detects `//@ejs-tag:code-slurpable` marker comments that the EJS * processor inserts at the start of every virtual block extracted from a * `<% … %>` tag that qualifies for promotion to `<%_ … _%>`. */ export declare const preferSlurpingCodeonly: Rule.RuleModule; //# sourceMappingURL=prefer-slurping-codeonly.d.ts.map