import { AsyncIterableX } from '../../asynciterable/asynciterablex.js'; import { StartWithAsyncIterable } from '../../asynciterable/operators/startwith.js'; /** * @ignore */ export declare function startWithProto(this: AsyncIterableX, ...args: T[]): StartWithAsyncIterable; declare module '../../asynciterable/asynciterablex' { interface AsyncIterableX { startWith: typeof startWithProto; } }