import { Action } from 'redux'; import { LogMonitorAction } from './actions'; import { LogMonitorProps } from './LogMonitor'; export interface LogMonitorState { initialScrollTop: number; consecutiveToggleStartId: number | null | undefined; } export default function reducer>(props: LogMonitorProps, state: Partial | undefined, action: LogMonitorAction): LogMonitorState;