/** * This is a JSON.stringify function with a custom replacer that stringifies bigints as strings. */ export declare function stringifyArgs(obj: any): string; /** * Awaits `value` (which may already be a resolved value) and returns a tagged * result so callers can decide when to surface a rejection. */ export declare function settle(value: T | Promise): Promise<{ ok: true; value: T; } | { ok: false; error: unknown; }>; //# sourceMappingURL=helpers.d.ts.map