/** * Common Class to provide or obtain a value, when there are multiple supported values. */ declare class Choice { private value; constructor(value: T); /** * getValue */ getValue(): T; } export { Choice as MasterModel, Choice as Choice };