import type { SxProps } from '@mui/material'; import React from 'react'; export interface MultiSelectProps { options: T[]; getOptionLabel: (option: T) => string; onChange: (value: readonly T[]) => void; value?: T[]; sx?: SxProps; disabled?: boolean; label?: string; error?: string | boolean; showAllSelectedItems?: boolean; loadingOptions?: boolean; } declare const AutocompleteMultiSelect: ({ options, getOptionLabel, onChange, value, sx, disabled, label, error, showAllSelectedItems, loadingOptions, ...rest }: MultiSelectProps) => React.ReactElement; export default AutocompleteMultiSelect;