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