import { TSESTree } from '@typescript-eslint/types'
/**
 * Computes the name of a JSX attribute node.
 *
 * @param node - The JSX attribute node.
 * @returns The computed name of the JSX attribute.
 */
export declare function computeNodeName(node: TSESTree.JSXAttribute): string
