import React from "react"; import { CellId } from "@nteract/commutable"; import { ContentRef } from "@nteract/core"; export interface DispatchProps { addCellBelow: () => void; addCellAbove: () => void; restartAndRun: () => void; hideOutput: () => void; hideInput: () => void; convertToMarkdown: () => void; } export interface ComponentProps { id: CellId; children: React.ReactNode | JSX.Element; contentRef: ContentRef; } export declare type CommandProps = DispatchProps; export declare const CommandContext: React.Context<{}>; declare class CommandContainer extends React.PureComponent { render(): JSX.Element; } declare const _default: import("react-redux").ConnectedComponent & ComponentProps>; export default _default;