import { ActionsObservable } from 'redux-observable'; import { Observable } from 'rxjs'; import { ProcessAction } from '../../state/actions'; /** * Provides an operator that can be used in an rxjs pipe to hold off on handling some events until after a migration has completed * * @param action$ An action stream that provides the actions that occur during process execution */ export declare function bufferDuringMigration(action$: ActionsObservable): (source: Observable) => Observable; //# sourceMappingURL=migrationBuffering.d.ts.map