export declare const TOGGLE_VISIBILITY = "@@redux-devtools-log-monitor/TOGGLE_VISIBILITY"; interface ToggleVisibilityAction { type: typeof TOGGLE_VISIBILITY; } export declare function toggleVisibility(): ToggleVisibilityAction; export declare const CHANGE_POSITION = "@@redux-devtools-log-monitor/CHANGE_POSITION"; interface ChangePositionAction { type: typeof CHANGE_POSITION; } export declare function changePosition(): ChangePositionAction; export declare const CHANGE_SIZE = "@@redux-devtools-log-monitor/CHANGE_SIZE"; interface ChangeSizeAction { type: typeof CHANGE_SIZE; size: number; } export declare function changeSize(size: number): ChangeSizeAction; export declare const CHANGE_MONITOR = "@@redux-devtools-log-monitor/CHANGE_MONITOR"; interface ChangeMonitorAction { type: typeof CHANGE_MONITOR; } export declare function changeMonitor(): ChangeMonitorAction; export declare type DockMonitorAction = ToggleVisibilityAction | ChangePositionAction | ChangeSizeAction | ChangeMonitorAction; export {};