import type { NodePath } from '@babel/traverse';
import type { ClassDeclaration, ClassExpression, ClassMethod, Expression } from '@babel/types';
export default function getClassMemberValuePath(classDefinition: NodePath<ClassDeclaration | ClassExpression>, memberName: string): NodePath<ClassMethod | Expression> | null;
