digitinary-ui
Version:
Digitinary UI Library
5 lines (4 loc) • 513 B
TypeScript
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;