import { ReactNode } from 'react' export interface ISelect { options: IOption[] value: string onChange: () => void } export interface IOption { label: string value: string children?: ReactNode }