import { IterableX } from '../iterablex';
import { MonoTypeOperatorFunction } from '../../interfaces';
export declare class EndWithIterable<TSource> extends IterableX<TSource> {
    private _source;
    private _args;
    constructor(source: Iterable<TSource>, args: TSource[]);
    [Symbol.iterator](): Generator<TSource, void, unknown>;
}
export declare function endWith<TSource>(...args: TSource[]): MonoTypeOperatorFunction<TSource>;
