import { TSESTree } from '@typescript-eslint/types'
/**
 * Extract dependencies from an enum.
 *
 * @deprecated - To remove when experimental dependency detection is the only
 *   option.
 * @param expression - The enum or class declaration node.
 * @param enumName - The name of the enum being processed.
 * @returns The list of dependencies.
 */
export declare function computeDependencies(
  expression: TSESTree.Expression,
  enumName: string,
): string[]
