/** * The `rcp` functions stands for `return custom promise`. It takes a function and a value and returns a promise that resolves to the value. * * [Aracna Reference](https://aracna.dariosechi.it/core/functions/rcp) */ export declare function rcp(fn: () => any, value: T): Promise;