import React from 'react'; import { SelectProps } from './types'; declare const Select: ({ options, onSelect, filterable, placeholder, variant, selectSize, borderVariant, disabled, hasError, selectedValue, searchLabel, selectOptionLabel, name, id, onBlur, portalContainer, dropdownVariant, dropdownAlignment, targetElementRef, }: SelectProps) => React.JSX.Element; export default Select;