/** * The `cafsue` function stands for `call async functions sequentially until error`. It executes a list of async functions in sequence, the execution stops if a function throws or returns an error. * * [Aracna Reference](https://aracna.dariosechi.it/core/functions/cafsue) */ export declare function cafsue(...fns: ((...args: any[]) => Promise)[]): Promise;