declare const model: import('vue').ModelRef; type __VLS_Props = { required?: boolean; disabled?: boolean; name?: string; label?: string; placeholder?: string; error?: { detail: string; }; helpText?: string; maxLength?: number; isInherited?: boolean; isInheritanceField?: boolean; }; type __VLS_PublicProps = { modelValue?: typeof model['value']; } & __VLS_Props; declare function __VLS_template(): { attrs: Partial<{}>; slots: { hint?(_: {}): any; }; refs: {}; rootEl: HTMLDivElement; }; type __VLS_TemplateResult = ReturnType; declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, { focus: () => any; blur: () => any; "update:modelValue": (value: string | undefined) => any; change: (args_0: string | undefined) => any; "inheritance-restore": () => any; "inheritance-remove": () => any; }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{ onFocus?: (() => any) | undefined; onBlur?: (() => any) | undefined; "onUpdate:modelValue"?: ((value: string | undefined) => any) | undefined; onChange?: ((args_0: string | undefined) => any) | undefined; "onInheritance-restore"?: (() => any) | undefined; "onInheritance-remove"?: (() => any) | undefined; }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>; declare const _default: __VLS_WithTemplateSlots; export default _default; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; };