import { ModelRef, RefOption } from '../../types'; type __VLS_Props = { /** * The current selected values. */ modelValue: ModelRef[] | undefined; /** * The label text for the dropdown field (optional) */ label?: string; /** * List of available options for the dropdown */ options?: Readonly; /** * A helper text displayed below the dropdown when there are no errors (optional). */ helper?: string; /** * Error message displayed below the dropdown (optional) */ error?: unknown; /** * Placeholder text shown when no value is selected. */ placeholder?: string; /** * If `true`, the dropdown component is marked as required. */ required?: boolean; /** * If `true`, the dropdown component is disabled and cannot be interacted with. */ disabled?: boolean; }; declare function __VLS_template(): { attrs: Partial<{}>; slots: { tooltip?(_: {}): any; }; refs: {}; rootEl: any; }; type __VLS_TemplateResult = ReturnType; declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & { "update:modelValue": (value: Readonly<{ __isRef: true; blockId: string; name: string; requireEnrichments?: true | undefined; }>[] | undefined) => any; }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{ "onUpdate:modelValue"?: ((value: Readonly<{ __isRef: true; blockId: string; name: string; requireEnrichments?: true | undefined; }>[] | undefined) => any) | undefined; }>, { options: Readonly; label: string; error: undefined; modelValue: ModelRef[] | undefined; placeholder: string; required: boolean; disabled: boolean; helper: string; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>; declare const _default: __VLS_WithTemplateSlots; export default _default; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; }; //# sourceMappingURL=PlDropdownMultiRef.vue.d.ts.map