declare const promisifyFunctionResult: <P extends any[], K>(fn: (...args: P) => K | Promise<K>, ...args: P) => Promise<K>;
export default promisifyFunctionResult;
