import { Actions } from '@ngrx/effects';
import * as SpaceActions from './../actions/space.actions';
import { Observable } from 'rxjs';
import { Spaces } from 'ngx-fabric8-wit';
import { Notifications } from "ngx-base";
export declare type Action = SpaceActions.All;
export declare class SpaceEffects {
    private actions$;
    private spaces;
    private notifications;
    private oldSpaceId;
    constructor(actions$: Actions, spaces: Spaces, notifications: Notifications);
    getSpace$: Observable<Action>;
    getSpaceSuccess$: Observable<any>;
}
