import { InjectionKey, Ref } from 'vue'; import type { MergedTheme } from '../../_mixins'; import type { DynamicInputTheme } from '../styles'; export interface DynamicInputInjection { mergedThemeRef: Ref>; keyPlaceholderRef: Ref; valuePlaceholderRef: Ref; placeholderRef: Ref; } export declare const dynamicInputInjectionKey: InjectionKey; export declare type OnUpdateValue = (value: T[]) => void;