/** * Node kind detection and classification logic. */ import type { TSESTree } from '@typescript-eslint/typescript-estree'; import type { NodeKind } from '../types'; /** * Determines the NodeKind for an AST node. */ export declare function getNodeKind(node: TSESTree.Node): NodeKind; //# sourceMappingURL=node-kind.d.ts.map