Select from predefined dictionary values.
type DictionaryField<T extends ObjectValue<{ value: any }>> = T[];
value property)type Country = { value: string; name: string; code: string };
type Countries = DictionaryField<Country>;
// Result: {
// value: string;
// name: string;
// code: string;
// }[]