import { AsyncIterableX } from './asynciterablex'; export declare class SkipUntilAsyncIterable extends AsyncIterableX { private _source; private _other; constructor(source: AsyncIterable, other: () => Promise); [Symbol.asyncIterator](): AsyncIterableIterator; } export declare function skipUntil(source: AsyncIterable, other: () => Promise): AsyncIterableX;