export default FlowGatewayState; /** * * */ type FlowGatewayState = string; declare namespace FlowGatewayState { /** * Returns a FlowGatewayState enum value from a JavaScript object name. * @param {Object} obj The plain JavaScript object containing the name of the enum value. * @return {FlowGatewayState} The enum FlowGatewayState value. */ function constructFromObject(obj: any): string; /** * Validates FlowGatewayState 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; }