import { AppState } from "@nteract/types"; import * as cell from "./core/contents/cell"; import * as notebook from "./core/contents/notebook"; export { cell, notebook }; export * from "./core/contents"; export * from "./core/hosts"; export * from "./core/kernels"; export * from "./core/kernelspecs"; export * from "./core/transforms"; export * from "./core/editors"; export * from "./app"; export * from "./comms"; /** * Returns the type of modal, such as the about modal, that is currently open * in the nteract application. */ export declare const modalType: (state: AppState) => string; /** * Returns the list of ENQUEUE_ACTION actions that are waiting for the * kernel to successfully launch before executing. */ export declare const messageQueue: (state: AppState) => import("immutable").List; export declare const isSidebarVisible: (state: AppState) => boolean;