export declare const UPDATE_SCROLL_TOP = "@@redux-devtools-log-monitor/UPDATE_SCROLL_TOP";
interface UpdateScrollTopAction {
    type: typeof UPDATE_SCROLL_TOP;
    scrollTop: number;
}
export declare function updateScrollTop(scrollTop: number): UpdateScrollTopAction;
export declare const START_CONSECUTIVE_TOGGLE = "@@redux-devtools-log-monitor/START_CONSECUTIVE_TOGGLE";
interface StartConsecutiveToggleAction {
    type: typeof START_CONSECUTIVE_TOGGLE;
    id: number | null;
}
export declare function startConsecutiveToggle(id: number | null): StartConsecutiveToggleAction;
export declare type LogMonitorAction = UpdateScrollTopAction | StartConsecutiveToggleAction;
export {};
