import React from "react"; import { ContentRef } from "@nteract/core"; export interface DispatchProps { addCell: () => void; restartAndRun: () => void; interrupt: () => void; clearOutputs: () => void; toggleSidebar: () => void; } export interface ComponentProps { id: string; children: React.ReactNode | JSX.Element; contentRef: ContentRef; isSidebarVisible?: boolean; } export declare type AppToolbarProps = DispatchProps & ComponentProps; export declare const AppToolbarContext: React.Context; declare class AppToolbar extends React.PureComponent { render(): JSX.Element; } declare const _default: import("react-redux").ConnectedComponent & ComponentProps>; export default _default;