import { Store } from '@ngrx/store';
import { Observable } from 'rxjs/Observable';
import { UserStrategy } from '../models/user-strategy.model';
import { ApplicationDataState } from '../../../app/app-data.state';
export declare class UserStrategizer {
    private store;
    constructor(store: Store<ApplicationDataState>);
    state(): UserStrategy;
    refresh(userStrategy: UserStrategy): void;
    watch(): Observable<UserStrategy>;
}
