import { SelectProps } from '@mantine/core'; export interface VSelectProps extends Omit { loading?: boolean; maxDropdownHeight?: number; withVirtualization?: boolean; } export declare const VSelect: import("react").MemoExoticComponent<({ allowDeselect, autoComplete, chevronColor, classNames, clearable, clearButtonProps, comboboxProps, data, defaultDropdownOpened, defaultSearchValue, defaultValue, disabled, dropdownOpened, error, filter, form, hiddenInputProps, id, limit, loading, maxDropdownHeight, name, nothingFoundMessage: nothingFoundMessageProp, onBlur, onChange, onClear, onClick, onDropdownClose, onDropdownOpen, onFocus, onOptionSubmit, onSearchChange, placeholder: placeholderProp, readOnly, rightSection: rightSectionProp, rightSectionPointerEvents: rightSectionPointerEventsProp, scrollAreaProps, searchable, searchValue, selectFirstOptionOnChange, size, styles, unstyled, value, withScrollArea, withVirtualization, ...props }: VSelectProps) => import("react/jsx-runtime").JSX.Element>;