/** * returns in-flight promise if there is one * * @param asyncFunction - asyncFunction to be deduped. * @returns - the return type of the callback */ export declare const deDupeAsyncFunction: (asyncFunction: (...args: A) => Promise) => (...args: A) => Promise;