import type { ReactNode } from 'react'; export interface SelectModel { label: string | ReactNode; value: string; }