type BaseOption = { disabled?: boolean; helpText?: string; text: string; value: string | number; }; type GroupedOption = { category: string; options: T[]; }; export { BaseOption, GroupedOption };