import { ContentRef } from "@nteract/core"; import * as monaco from "@nteract/monaco-editor"; import { Channels } from "@nteract/messaging"; interface ComponentProps { id: string; contentRef: ContentRef; editorType: string; readOnly?: boolean; value: string; channels: Channels; editorFocused: boolean; } declare const _default: import("react-redux").ConnectedComponent & ComponentProps>; export default _default;