import { OperatorFunction, MonoTypeOperatorFunction, TruthyTypesOf } from '../types'; /** @deprecated Use a closure instead of a `thisArg`. Signatures accepting a `thisArg` will be removed in v8. */ export declare function filter(predicate: (this: A, value: T, index: number) => value is S, thisArg: A): OperatorFunction; export declare function filter(predicate: (value: T, index: number) => value is S): OperatorFunction; export declare function filter(predicate: BooleanConstructor): OperatorFunction>; /** @deprecated Use a closure instead of a `thisArg`. Signatures accepting a `thisArg` will be removed in v8. */ export declare function filter(predicate: (this: A, value: T, index: number) => boolean, thisArg: A): MonoTypeOperatorFunction; export declare function filter(predicate: (value: T, index: number) => boolean): MonoTypeOperatorFunction; //# sourceMappingURL=filter.d.ts.map