import React from "react"; import { KernelRef, ContentRef, KernelStatus } from "@nteract/core"; interface ComponentProps { contentRef: ContentRef; children: React.ReactNode; } interface StateProps { kernelStatus: KernelStatus; kernelRef?: KernelRef | null; lastSaved?: Date; kernelSpecDisplayName?: string; } export declare const StatusBarContext: React.Context<{}>; declare class StatusBar extends React.Component { render(): JSX.Element; } declare const _default: import("react-redux").ConnectedComponent & ComponentProps>; export default _default;