import { Action } from 'redux'; import { ChartMonitorAction } from './actions.js'; import { ChartMonitorProps } from './ChartMonitor.js'; export interface ChartMonitorState { isVisible?: boolean; } export default function reducer>(props: ChartMonitorProps, state: ChartMonitorState | undefined, action: ChartMonitorAction): { isVisible: boolean; };