import { Observable } from '../Observable'; import { Falsy, OperatorFunction } from '../types'; export declare function every(predicate: BooleanConstructor): OperatorFunction extends never ? false : boolean>; /** @deprecated Use a closure instead of a `thisArg`. Signatures accepting a `thisArg` will be removed in v8. */ export declare function every(predicate: BooleanConstructor, thisArg: any): OperatorFunction extends never ? false : boolean>; /** @deprecated Use a closure instead of a `thisArg`. Signatures accepting a `thisArg` will be removed in v8. */ export declare function every(predicate: (this: A, value: T, index: number, source: Observable) => boolean, thisArg: A): OperatorFunction; export declare function every(predicate: (value: T, index: number, source: Observable) => boolean): OperatorFunction; //# sourceMappingURL=every.d.ts.map