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