import type { Importer } from '../parse';
import type { NodePath } from 'ast-types/lib/node-path';
/**
 * Returns true if the expression is of form `exports.foo = ...;` or
 * `modules.exports = ...;`.
 */
export default function isExportsOrModuleAssignment(path: NodePath, importer: Importer): boolean;
