/** * The `ma` function stands for `make async`. It takes a function and returns a function that returns a promise. * * [Aracna Reference](https://aracna.dariosechi.it/core/functions/ma) */ export declare function ma(fn: (...args: any) => T | Promise): (...args: any) => Promise;