import { type MultiSelectInputEmits, type MultiSelectInputModelValue, type MultiSelectInputProps } from '../../types'; import { type InputWithOptionsContext } from './useInputWithOptionsContext'; export type UseMultiSelectInputContext = MultiSelectInputProps> = (props: P, emit: MultiSelectInputEmits) => InputWithOptionsContext; export declare const useMultiSelectInputContext: UseMultiSelectInputContext;