import { IterableX } from '../../iterable/iterablex.js'; /** * @ignore */ export declare function catchErrorProto(this: IterableX, fn: (error: any) => Iterable): IterableX; declare module '../../iterable/iterablex' { interface IterableX { catchError: typeof catchErrorProto; } }