export interface IAnnotatedValue {
    value: string;
    annotation: string | undefined;
}
export declare class AnnotatedValueSet {
    static includes(values: IAnnotatedValue[], search: string): boolean;
    static getValues(values: IAnnotatedValue[] | undefined): string[];
}
