import type { NodePath } from '@babel/traverse'; import type { FlowType, Node, TSType } from '@babel/types'; /** * Gets the most inner valuable TypeAnnotation from path. If no TypeAnnotation * can be found null is returned */ export default function getTypeAnnotation(path: NodePath): NodePath | null;