import { Action } from '@ngrx/store'; export declare class ResetState implements Action { static TYPE: string; readonly type: string; } export declare class SetRootState implements Action { readonly payload: any; static TYPE: string; readonly type: string; constructor(payload: any); }