/** * No-Operation (noop) resolver that simply returns a promise * that resolves with the value that was passed to it * * @param val - Value to be resolved with */ declare function noopresolve(val?: T): Promise; export { noopresolve, noopresolve as default };