import { Action } from '@ngrx/store'; export declare const APPLICATION_INITIALIZED = "APPLICATION_INITIALIZED"; export declare class ApplicationInitializedAction implements Action { payload: {}; readonly type = "APPLICATION_INITIALIZED"; constructor(payload?: {}); }