import React from 'react'; import { TTheme } from '../input'; interface SelectProps { 'data-qa'?: string; label: string; options: IOption[]; defaultSelectedOptions?: IOption[]; onChange: (selectedOptions: IOption[]) => void; inputValue?: (text: string) => void; disabled?: boolean; hint?: string; theme?: TTheme; placeholder?: string; emptyLabel?: string; } interface IOption { key: string | number; value: string; } declare const SelectTag: React.FC; export default SelectTag;