import { TSESTree } from '@typescript-eslint/types'
/**
 * Computes the name of an import specifier node.
 *
 * @param node - The import specifier node.
 * @param ignoreAlias - Whether to ignore the alias and use the local name.
 * @returns The computed name of the import specifier.
 */
export declare function computeNodeName(
  node: TSESTree.ImportSpecifier,
  ignoreAlias: boolean,
): string
