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