import type { ErrorHandler } from "./types"; /** * Universal error handler. * If onError is provided — calls it and suppresses the exception. * If onError is not provided — rethrows the exception. * * @category Utilities */ export declare function handleError(error: unknown, source: TSource, onError?: ErrorHandler): void; //# sourceMappingURL=utils.d.ts.map