import { Tag } from '@/components/tagsField/TagsField.types'; import { FeedbackVariant } from '@/components/shared/commonTypes'; declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{ modelValue: Tag[]; placeholder?: string; testId?: string; disabled?: boolean; feedbackVariant?: FeedbackVariant; feedbackText?: string; showFeedbackTextIcon?: boolean; }>, { modelValue: () => any[]; disabled: boolean; placeholder: string; testId: string; feedbackVariant: any; feedbackText: string; showFeedbackTextIcon: boolean; }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:modelValue": (value: Tag[]) => void; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly, { modelValue: () => any[]; disabled: boolean; placeholder: string; testId: string; feedbackVariant: any; feedbackText: string; showFeedbackTextIcon: boolean; }>>> & { "onUpdate:modelValue"?: (value: Tag[]) => any; }, { testId: string; disabled: boolean; modelValue: Tag[]; placeholder: string; feedbackText: string; feedbackVariant: FeedbackVariant; showFeedbackTextIcon: boolean; }>; export default _default; type __VLS_NonUndefinedable = T extends undefined ? never : T; type __VLS_TypePropsToRuntimeProps = { [K in keyof T]-?: {} extends Pick ? { type: import('vue').PropType<__VLS_NonUndefinedable>; } : { type: import('vue').PropType; required: true; }; }; type __VLS_WithDefaults = { [K in keyof Pick]: K extends keyof D ? __VLS_Prettify : P[K]; }; type __VLS_Prettify = { [K in keyof T]: T[K]; } & {};