exportinterfaceAutocompleteListParams {
enabled: boolean;
/** list will only get recreated if the type changes */type?: string;
searchString?: string;
entries?: AutocompleteEntry[];
}
exportinterfaceAutocompleteEntry {
key: string;
displayValue?: string;
}