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