import { AriaListBoxOptions } from 'react-aria'; import { CommonInputProps } from '../../types'; import { MultiSelectState } from '../hooks/useMultiSelectState'; import * as React from 'react'; interface MultiSelectListProps extends AriaListBoxOptions, Pick { state: MultiSelectState; mode?: 'content' | 'dropdown'; isDisabled?: boolean; emptyListLabel: string; 'aria-label'?: string; } export declare const MultiSelectList: (props: MultiSelectListProps & React.RefAttributes) => React.ReactNode; export {};