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