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