import { ContentRef } from "@nteract/core"; import CodeMirrorEditor from "@nteract/editor"; import { Dispatch } from "redux"; interface ComponentProps { id: string; contentRef: ContentRef; editorType: string; } export declare const makeMapDispatchToProps: (initialDispatch: Dispatch, ownProps: ComponentProps) => (dispatch: Dispatch) => { focusBelow: () => void; focusAbove: () => void; }; declare const _default: import("react-redux").ConnectedComponent & ComponentProps>; export default _default;