export interface ISelectOption { value: string; label: string; group?: string; groupLabel?: string; groupLabelVisible?: string; payload?: any; } export interface IBSelectProps { className?: string; value: ISelectOption; options: ISelectOption[]; onChange(option: ISelectOption): void; styleType?: 'standard' | 'inline'; addEmptyValue?: boolean; placeholder?: string; errorMessage?: string; error?: boolean; disabled?: boolean; useGroups?: boolean; testId?: string; maxDropdownHeight?: number; } export interface IBSelectState { show: boolean; }