import React from 'react';
import { Node } from 'reactflow';
type Props = {
    node: Node | undefined;
    nodes: {
        [x: string]: Node;
    };
    title: string;
    description: string;
};
declare function Panel({ node, nodes, title, description }: Props): React.JSX.Element;
export default Panel;
