/// <reference types="react" />
import * as React from 'react';
import { EditorView, Node as PMNode, NodeView } from '../../prosemirror';
export interface Props {
    children?: React.ReactNode;
    view: EditorView;
    node: PMNode;
}
export declare const panelNodeView: (node: any, view: any, getPos: () => number) => NodeView;
