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