import { IterableX } from '../iterablex.js'; import { OperatorFunction } from '../../interfaces.js'; /** @ignore */ export declare class FilterIterable extends IterableX { private _source; private _predicate; private _thisArg?; constructor(source: Iterable, predicate: (value: TSource, index: number) => boolean, thisArg?: any); [Symbol.iterator](): Generator; } export declare function filter(predicate: (value: T, index: number) => value is S, thisArg?: any): OperatorFunction; export declare function filter(predicate: (value: T, index: number) => boolean, thisArg?: any): OperatorFunction;