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