import type { Rule } from 'eslint'; /** * ESLint rule: disallow direct function calls inside EJS tags. * * Reports direct calls (`foo()`) found in the virtual JavaScript generated * from EJS tags. Method calls (`obj.foo()`) are ignored. * * `include()` is allowed by default because it is commonly used in EJS * templates for composition. */ export declare const noGlobalFunctionCall: Rule.RuleModule; //# sourceMappingURL=no-global-function-call.d.ts.map