import { IObserverPipe } from '../../type/observer-pipe.type';
import { IScanFunction } from './scan-function.type';
export declare function scanObserverPipe<GIn, GOut>(scanFunction: IScanFunction<GIn, GOut>, initialValue: GOut): IObserverPipe<GIn, GOut>;
