interface DropdownItem { title: string; value: string; icon?: string; nested?: Array; } export type { DropdownItem };