export declare const tryCatch: (fn: () => Promise | T) => Promise<{ readonly ok: true; readonly data: Awaited; readonly error?: undefined; } | { readonly ok: false; readonly error: string; readonly data?: undefined; }>; //# sourceMappingURL=safe-run.d.ts.map