Type Hints For Management API in Actions

Is there any way to get type hints for imported libraries (like the management API) from within the browser action editor the same way that type hints work for the event and api object?

I am finding the management client somewhat difficult to navigate without any indication of what methods are available (and flipping back and forth between the auto-generated docs and my code is a bit tedious)

For example, if I write the following function I can see all the methods on the event object from within the editor (once I have configured the docstring correctly) but I cannot do this with the ManagementClient. Is there any way to achieve this?

/**
 * @param {Event} event - The event object containing authentication details.
 * @param {ManagementClient} management - The Auth0 management instance.
 */
async function foo(event, management) {
  // do something
}