/**
* returns in-flight promise if there is one
*
* @paramasyncFunction - asyncFunction to be deduped.
* @returns - the return type of the callback
*/exportdeclareconstdeDupeAsyncFunction: <A extendsany[], R>(asyncFunction: (...args: A) => Promise<R>) =>(...args: A) =>Promise<R>;