import * as Models from '../models';
export declare class ChoiceViewModel {
    private readonly wrapped;
    private readonly id;
    constructor(wrapped: Models.Value, id: string, name?: string | null, searchTerm?: string);
    readonly name: string;
    private readonly search;
    private readonly isEnum;
    readonly getValue: () => Models.Value;
    readonly equals: (other: ChoiceViewModel) => boolean;
    readonly valuesEqual: (other: ChoiceViewModel) => boolean;
    readonly toString: () => string;
}
