import { ReduxState, MonitorState } from './state'; declare type Action = { type: string; [key: string]: any; }; export declare function updateMonitorState(monitorState: MonitorState): { type: string; monitorState: MonitorState; }; export declare function reducer(_props: Object, state: ReduxState | undefined, action: Action): any; export {};