import { ISetNotificationWidgetHiding, ISetCpxState, IGetWidgetImages, IUpdateAppContext } from "./actionInterfaces"; import { IAppStore } from "./context"; declare const appReducer: (state: IAppStore, action: IAppContextActions) => IAppStore | void; export default appReducer; export declare type IAppContextActions = ISetCpxState | IGetWidgetImages | IUpdateAppContext | ISetNotificationWidgetHiding;