import { IterableX } from '../../iterable/iterablex'; /** * @ignore */ export declare function retryProto(this: IterableX, count?: number): IterableX; declare module '../../iterable/iterablex' { interface IterableX { retry: typeof retryProto; } }