declare const model: import('vue').ModelRef; type __VLS_Props = { label?: string; placeholder?: string; disabled?: boolean; error?: { code: number; detail: string; } | null; hint?: string; toggable?: boolean; name?: string; }; type __VLS_PublicProps = { modelValue?: typeof model['value']; } & __VLS_Props; declare function __VLS_template(): { attrs: Partial<{}>; slots: Readonly<{ prefix?: unknown; suffix?: unknown; hint?: unknown; }> & { prefix?: unknown; suffix?: unknown; hint?: unknown; }; 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; } & { submit: () => any; change: (value: string | undefined) => any; }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{ onSubmit?: (() => any) | undefined; "onUpdate:modelValue"?: ((value: string | undefined) => any) | undefined; onChange?: ((value: string | undefined) => any) | undefined; }>, { toggable: boolean; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>; declare const _default: __VLS_WithTemplateSlots; export default _default; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; };