import type { TSESTree } from "@typescript-eslint/utils"; import { type getFullTypeChecker } from "./ast-utils.js"; /** ESLint rule context shape accepted by AST/type helper utilities. */ export type AstUtilsRuleContext = Parameters[0]; /** Returns whether an AST node likely refers to an `HTMLScriptElement`. */ export declare const isLikelyScriptElement: (node: TSESTree.Node, context: AstUtilsRuleContext, fullTypeChecker: ReturnType) => boolean; //# sourceMappingURL=script-element.d.ts.map