export declare enum SystemInfoActionTypes { LoadSystemInfo = "[SystemInfo] Load System info", AddSystemInfo = "[SystemInfo] Add System info", LoadSystemInfoFail = "[SystemInfo] Load System info fail" } export declare const loadSystemInfo: import("@ngrx/store").ActionCreator<"[SystemInfo] Load System info", () => import("@ngrx/store/src/models").TypedAction<"[SystemInfo] Load System info">>; export declare const addSystemInfo: import("@ngrx/store").ActionCreator<"[SystemInfo] Add System info", (props: { systemInfo: any; }) => { systemInfo: any; } & import("@ngrx/store/src/models").TypedAction<"[SystemInfo] Add System info">>; export declare const loadSystemInfoFail: import("@ngrx/store").ActionCreator<"[SystemInfo] Load System info fail", (props: { error: any; }) => { error: any; } & import("@ngrx/store/src/models").TypedAction<"[SystemInfo] Load System info fail">>;