import type { NodePath } from 'ast-types/lib/node-path';
/**
 * If node is an Identifier, it returns its name. If it is a literal, it returns
 * its value.
 */
export default function getNameOrValue(path: NodePath, raw?: boolean): string;
