import * as actions from "@nteract/actions"; import { Action, Reducer } from "redux"; export declare const isSidebarVisible: (state: boolean | undefined, action: actions.ToggleSidebar) => boolean; export declare const sidebar: Reducer<{ isSidebarVisible: boolean; }, Action>;