/** * The `tc` function stands for `try catch`. It takes a function and returns the result of the function or the error that was thrown. * * [Aracna Reference](https://aracna.dariosechi.it/core/functions/tc) */ export declare function tc(fn: () => T, log?: boolean): T | U;