import React from 'react'; import type { MultiSelectContextProps, MultiSelectItemProps, MultiSelectProps, MultiSelectValue } from './multi-select.types.js'; export declare const MultiSelectContext: React.Context; export declare function BaseMultiSelect({ size, listBoxProps, selectionMode, selectedKeys, onSelectionChange, placeholder, showSingleSectionTitle, placement, portalContainer, id, hideFilter, hideSelectAll, width, ...props }: MultiSelectProps): import("react/jsx-runtime").JSX.Element; export declare const MultiSelect: React.MemoExoticComponent; export declare const MultiSelectItem: (props: MultiSelectItemProps) => JSX.Element; export { Section as MultiSelectSection } from 'react-stately';