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