import * as React from 'react'; import ConfigStore from '../store/ConfigStore'; declare type IProps = { configStore?: ConfigStore; }; declare class NodeCandidatesPanel extends React.Component { render(): JSX.Element; } export default NodeCandidatesPanel;