import { SortVariableDeclarationsNode } from './types.js'
/**
 * Computes the dependencies of a variable declaration node.
 *
 * @deprecated - To remove when experimental dependency detection is the only
 *   option.
 * @param node - The AST node to analyze.
 * @returns The names of the dependencies.
 */
export declare function computeDependencies(
  node: SortVariableDeclarationsNode,
): string[]
