import { UnaryFunction } from 'rxjs/interfaces'; export declare type Consumer = UnaryFunction; export declare type BiFunction = (t1: T1, t2: T2) => R; export declare type BiConsumer = BiFunction;