import type { NodePath } from '@babel/traverse'; import type { TSTypeParameterDeclaration, TSTypeParameterInstantiation, TypeParameterDeclaration, TypeParameterInstantiation } from '@babel/types'; export type TypeParameters = Record; export default function getTypeParameters(declaration: NodePath, instantiation: NodePath, inputParams: TypeParameters | null | undefined): TypeParameters;