export default NodeAction;
declare class NodeAction extends React.Component<any, any, any> {
    static propTypes: {
        canvasRef: PropTypes.Requireable<any>;
        selectedItem: PropTypes.Requireable<object>;
    };
    constructor(props: any);
    constructor(props: any, context: any);
    render(): JSX.Element;
}
import React from 'react';
import PropTypes from 'prop-types';
