import { SelectProps, Option } from '../../types';
import './style.scss';
declare const SelectGroup: <T extends Option | Option[] | null>({ label, placeholder, options, value, onChange, isMultiple, disabled, className, errorMsg, helperText, withSearch, itemsLabel, size, required, isLoading, onSelfInput, selfInputText, selfInputAddActionText, renderSelfInputBtnText, clearable, startAdornment, onSearch, handleScrollEnd, }: SelectProps<T>) => import("react/jsx-runtime").JSX.Element;
export default SelectGroup;
