import { AsyncOperator } from '../../AsyncSeq'; /** * Returns the sequence of elements skipped while matching the condition. * * ```typescript * const result = await rangeAsAsync(1,10).pipe( * skipWhileAsync(async i => i < 8) * ).toArrayAsync() * * //result: [8,9,10] * ``` * * @param predicate Condition to skip enumeration. * @typeParam T Source element type. * @returns Operator function. * @category Async Operators */ export declare const skipWhileAsync: (predicate: (arg: T) => Promise | boolean) => AsyncOperator;