import { ThemingProps } from '@chakra-ui/react'; import { UseMultipleSelectionActions, UseMultipleSelectionPropGetters, UseMultipleSelectionState } from 'downshift'; import type { ComboboxItem } from '../SingleSelect'; interface MultiSelectContextReturn extends UseMultipleSelectionPropGetters, UseMultipleSelectionState, Pick, 'reset' | 'addSelectedItem' | 'removeSelectedItem' | 'setActiveIndex'> { maxItems: number | null; colorScheme?: ThemingProps<'MultiSelect'>['colorScheme']; /** * If `true`, the selected items will take up the full width of the input container. Defaults to `false`. */ isStretchLayout?: boolean; } export declare const MultiSelectContext: import("react").Context | undefined>; export declare const useMultiSelectContext: () => MultiSelectContextReturn; export {};