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