import { type PropsWithChildren } from 'react'; import { type DefaultSelectValue, type OptionsType, type SelectContextValueBase } from '../@common'; export type MultiSelectContextValue = { value?: Value[]; onChange: (event: Value[]) => void; } & SelectContextValueBase; export declare function MultiSelectProvider({ children, value, }: PropsWithChildren<{ value: MultiSelectContextValue; }>): import("react/jsx-runtime").JSX.Element; export declare namespace MultiSelectProvider { var displayName: string; } export declare const useMultiSelectContext: () => MultiSelectContextValue; //# sourceMappingURL=MultiSelect.context.d.ts.map