import { IterableX } from '../../iterable/iterablex'; /** * @ignore */ export declare function startWithProto(this: IterableX, ...args: T[]): IterableX; declare module '../../iterable/iterablex' { interface IterableX { startWith: typeof startWithProto; } }