import { TargetingFormActions } from './targeting-form.actions'; import { TargetingFormState } from './targeting-form.reducer'; import { AppState } from '../../reducers'; import { Store } from '@ngrx/store'; import { Observable } from 'rxjs'; export declare class TargetingFormService { private _store; private targetingFormActions; static getModel(_store: any): Observable; setFormValue(formValue: TargetingFormState): void; constructor(_store: Store, targetingFormActions: TargetingFormActions); }