import { TargetingFormState } from './targeting-form.reducer'; import { Action } from '@ngrx/store'; export interface TargetingFormAction extends Action { type: string; payload?: any; } export declare class TargetingFormActions { static SET_FORM_VALUE: string; setFormValue(formValue: TargetingFormState): TargetingFormAction; }