import { OnInit } from '@angular/core';
import { Store } from '@ngrx/store';
import { Observable } from 'rxjs/Observable';
import { SubscriptionsModuleState } from './store/index';
import { Subscription } from './store/subscriptions.model';
export declare class SubscriptionsLogicComponent implements OnInit {
    private store;
    subscriptions$: Observable<Subscription[]>;
    isLoading$: Observable<boolean>;
    constructor(store: Store<SubscriptionsModuleState>);
    ngOnInit(): void;
}
