export type SelectValue = string | number | boolean | null; export type OptionValue = string | number | boolean | null; export type Option = { [key in string]: OptionValue; };