import type { LogLevel } from './log-level'; type AsyncFunction = (...args: A) => Promise; type LogLevelAndIndentApi = { logLevel: LogLevel; indent: boolean; }; export declare const wrapWithErrorHandling: (fn: AsyncFunction) => AsyncFunction; export {};