/** * The `mtcp` function stands for `make try catch promise`. It takes an async function and returns a function that will return the result of the original function or an error. * * [Aracna Reference](https://aracna.dariosechi.it/core/functions/mtcp) */ export declare function mtcp(fn: (...args: any) => Promise): (...args: any) => Promise;