export type OptionValue = string | number | boolean | Record; export type DropdownOption = { label: string; value?: OptionValue; visible?: boolean; icon?: string; }; export type MultiSelectOption = { label: string; value?: OptionValue; visible?: boolean; icon?: string; };