import { IterableX } from '../../iterable/iterablex'; /** * @ignore */ export declare function sliceProto(this: IterableX, begin: number, end: number): IterableX; declare module '../../iterable/iterablex' { interface IterableX { slice: typeof sliceProto; } }