import { ComputedRef, WritableComputedRef } from 'vue'; import { InputProps, OptionsProps, SelectInputEmits, SelectInputModelValue, SelectOption, WithElement } from '../../types'; export interface InputWithOptionsContext { elementProps: ComputedRef>; id: string; model: WritableComputedRef; options: ComputedRef[]>; } export declare const useInputWithOptionsContext: (props: WithElement & OptionsProps>, emit: SelectInputEmits) => InputWithOptionsContext;