import { TooltipPositions } from '@/components/tooltip/common/Tooltip.types'; import { FeedbackVariant, MaxLengthCounterPositions } from '@/components/shared/commonTypes'; declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{ modelValue?: string; placeholder?: string; disabled?: boolean; label?: string; maxLength?: number; maxLengthCounterPosition?: MaxLengthCounterPositions; mandatory?: boolean; hoverHelpText?: string; hoverHelpTextPlacement?: TooltipPositions; feedbackVariant?: FeedbackVariant; feedbackText?: string; showFeedbackTextIcon?: boolean; resize?: 'none' | 'vertical' | 'horizontal' | 'both'; height?: string; testId?: string; }>, { modelValue: string; placeholder: string; disabled: boolean; label: string; maxLength: any; maxLengthCounterPosition: string; mandatory: boolean; hoverHelpText: string; hoverHelpTextPlacement: string; feedbackText: string; feedbackVariant: any; showFeedbackTextIcon: boolean; resize: string; testId: string; height: any; }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:modelValue": (value: string) => void; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly, { modelValue: string; placeholder: string; disabled: boolean; label: string; maxLength: any; maxLengthCounterPosition: string; mandatory: boolean; hoverHelpText: string; hoverHelpTextPlacement: string; feedbackText: string; feedbackVariant: any; showFeedbackTextIcon: boolean; resize: string; testId: string; height: any; }>>> & { "onUpdate:modelValue"?: (value: string) => any; }, { label: string; testId: string; disabled: boolean; height: string; resize: 'none' | 'vertical' | 'horizontal' | 'both'; mandatory: boolean; modelValue: string; hoverHelpText: string; hoverHelpTextPlacement: TooltipPositions; maxLength: number; placeholder: string; maxLengthCounterPosition: MaxLengthCounterPositions; 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]; } & {};