import type { ISelectItem } from './ISelectItem'; export interface ISelectProps { options: ISelectItem[] | any[]; selectedValue: ISelectItem | any; placeholder: string; label: string; propertyLabel: string; propertyValue: string; disabled: boolean; required: boolean; multiple: boolean; filterable: boolean; emitSearch: boolean; openAbove: boolean; filterDebounce: number; heightList?: string; }