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