import { ReactNode, PropsWithChildren, Dispatch, SetStateAction } from 'react'; import { SelectConfig } from './Select'; export type Option = { label: string; value: string; selected?: boolean; }; type Context = { children?: ReactNode; options: Array