import { Ref } from 'vue'; import { SingleOrMultipleProps } from './types'; export declare function useSingleOrMultipleValue
(props: P, emits: (name: Name, ...args: any[]) => void): { modelValue: Ref; type: Ref<"single" | "multiple" | undefined>; changeModelValue: (value: string) => void; isSingle: import('vue').ComputedRef; };