import type { 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: import("vue").InjectionKey; export type OnUpdateValue = (value: T[]) => void;