import { Annotation, PropertyName } from '../types'; export declare enum ValueListParameterType { InOut = "InOut", DisplayOnly = "DisplayOnly" } export interface ValueListParameter { type: ValueListParameterType; localDataProperty: PropertyName; valueListProperty: PropertyName; } export interface ValueListAnnotation extends Annotation { collectionPath: string; searchSupported?: boolean; parameters: Array; }