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