import type { Lazy, MaybePromise } from '../../libs/standard-types'; import type { Result } from './result'; export declare const tryCatchAsync: (throwingFn: Lazy>) => Promise>; export declare const withTryCatchAsync: (throwingFn: (...params: Params) => MaybePromise) => Promise<(...params: Params) => Promise>>;