import type { Component } from 'vue'; import { type JsonFormModel, type JsonFormProps } from './types'; type __VLS_Props = JsonFormProps; type __VLS_ModelProps = { modelValue?: JsonFormModel | undefined; }; type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps; declare var __VLS_9: {}, __VLS_19: string, __VLS_20: { [x: string]: unknown; }; type __VLS_Slots = {} & { [K in NonNullable]?: (props: typeof __VLS_20) => any; } & { default?: (props: typeof __VLS_9) => any; }; declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, { validate: (callback?: ((errors: undefined | Record) => void) | undefined) => Promise | undefined> | undefined; validateField: (field: string | string[], callback?: ((errors: undefined | Record) => void) | undefined) => Promise | undefined> | undefined; resetFields: (field?: string | string[] | undefined) => void | undefined; clearValidate: (field?: string | string[] | undefined) => void | undefined; setFields: (data: Record) => void | undefined; scrollToField: (field: string) => void | undefined; }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:modelValue": (value: JsonFormModel | undefined) => any; }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{ "onUpdate:modelValue"?: ((value: JsonFormModel | undefined) => any) | undefined; }>, { component: string | Component; showColon: boolean; hideLabel: boolean; hideAsterisk: boolean; model: JsonFormModel; adapter: import("./types").JsonFormAdapter; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>; declare const __VLS_export: __VLS_WithSlots; declare const _default: typeof __VLS_export; export default _default; type __VLS_WithSlots = T & { new (): { $slots: S; }; };