import type { Importer } from '../parse';
import type { NodePath } from 'ast-types/lib/node-path';
/**
 * Given a path (e.g. call expression, member expression or identifier),
 * this function tries to find the name of module from which the "root value"
 * was imported.
 */
export default function resolveToModule(path: NodePath, importer: Importer): string | null;
