import { type SelectInputEmits, type SelectInputModelValue, type SelectInputProps } from '../../types'; import { type InputWithOptionsContext } from './useInputWithOptionsContext'; export type UseSelectInputContext = SelectInputProps> = (props: P, emit: SelectInputEmits) => InputWithOptionsContext; export declare const useSelectInputContext: UseSelectInputContext;