import { SelectOptionType } from '../../SelectMenu/interfaces'; export type DropdownChipProps = { selectedOptionLabel?: string; options: SelectOptionType[]; placeholder?: string; onChange?: (option: SelectOptionType) => void; menuPosition?: 'absolute' | 'fixed'; menuZIndex?: number; };