import { AsyncIterableX } from '../asynciterablex.js'; import { MonoTypeOperatorAsyncFunction } from '../../interfaces.js'; /** @ignore */ export declare class SkipUntilAsyncIterable extends AsyncIterableX { private _source; private _other; constructor(source: AsyncIterable, other: (signal?: AbortSignal) => Promise); [Symbol.asyncIterator](signal?: AbortSignal): AsyncGenerator, void, unknown>; } /** * Returns the elements from the source observable sequence only after the function that returns a promise produces an element. * * @template TSource The type of the elements in the source sequence. * @param {(signal?: AbortSignal) => Promise} other A function which returns a promise that triggers propagation * of elements of the source sequence. * @returns {MonoTypeOperatorAsyncFunction} An async-iterable sequence containing the elements of the source sequence * starting from the point the function that returns a promise triggered propagation. */ export declare function skipUntil(other: (signal?: AbortSignal) => Promise): MonoTypeOperatorAsyncFunction;