import type { ReactElement, ReactNode } from 'react'; import type { IconName } from '../Icon'; export type OptionType = { value: T; text: string; subText?: string; key?: string; children?: ReactNode; prefix?: IconName | ReactElement; };