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