export default NodeState;
/**
* *
*/
type NodeState = string;
declare namespace NodeState {
/**
* Returns a NodeState enum value from a JavaScript object name.
* @param {Object} obj The plain JavaScript object containing the name of the enum value.
* @return {NodeState} The enum NodeState value.
*/
function constructFromObject(obj: any): string;
/**
* Validates NodeState enum value.
* @param {Object} obj The plain JavaScript object containing the name of the enum value.
* @return {null} Throws error for invalid value.
*/
function validate(obj: any): null;
}