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