export type Option = { label: string; value: string; }; export type RawOptions = { [value: string]: string; } | (string | Partial