import type { NodePath } from '@babel/traverse';
import type { FunctionParameter, TSParameterProperty } from '@babel/types';
type ParameterNodePath = NodePath<FunctionParameter | TSParameterProperty>;
export default function getParameterName(parameterPath: ParameterNodePath): string;
export {};
