import { PropsWithChildren } from 'react'; import { PopoverProps } from "../Popover"; import { Option } from './SelectProvider'; export type { Option }; export type SelectConfig = { container?: HTMLElement | null; defaultValue?: string | Array; mode?: 'multi'; multiLabel?: string; placeholder?: string; removeBtn?: boolean; size?: 'sm' | 'md'; defaultOptions?: Array