import type { Form, FormError, FormErrorEvent, FormSubmitEvent, InferOutput } from '@nuxt/ui'; import type * as z from 'zod'; import type { AutoFormConfig, AutoFormState } from '../types/index.js'; declare const __VLS_export: >(__VLS_props: NonNullable>["props"], __VLS_ctx?: __VLS_PrettifyLocal>, "attrs" | "emit" | "slots">>, __VLS_exposed?: NonNullable>["expose"], __VLS_setup?: Promise<{ props: import("vue").PublicProps & __VLS_PrettifyLocal<{ schema: T; state: AutoFormState; config?: AutoFormConfig; id?: string | number; validate?: (state: AutoFormState) => FormError[] | Promise; validateOn?: ("input" | "change" | "blur")[]; disabled?: boolean; validateOnInputDelay?: number; transform?: boolean; loadingAuto?: boolean; } & { onSubmit?: ((payload: FormSubmitEvent>) => any) | undefined; onError?: ((payload: FormErrorEvent) => any) | undefined; }> & (typeof globalThis extends { __VLS_PROPS_FALLBACK: infer P; } ? P : {}); expose: (exposed: import("vue").ShallowUnwrapRef<{ form: Readonly | null>>; submit: () => Promise | undefined; validate: (opts?: any) => Promise | InferOutput> | undefined; clear: (path?: string | RegExp) => void | undefined; getErrors: (path?: string | RegExp) => FormError[] | undefined; setErrors: (errors: FormError[], name?: string | RegExp) => void | undefined; errors: import("vue").ComputedRef[], FormError[]> | undefined>; disabled: import("vue").ComputedRef | undefined>; dirty: import("vue").ComputedRef | undefined>; dirtyFields: import("vue").ComputedRef>> | undefined>; touchedFields: import("vue").ComputedRef>> | undefined>; blurredFields: import("vue").ComputedRef>> | undefined>; }>) => void; attrs: any; slots: { [K in `${keyof import("@nuxt/ui").InferInput & string}-${string}`]?: ((props: {}) => any) | undefined; } & { [K_1 in NonNullable & string>]?: ((props: { field: keyof import("@nuxt/ui").InferInput & string; state: Partial>; }) => any) | undefined; } & { [K_2 in `${keyof import("@nuxt/ui").InferInput & string}-content`]?: ((props: {}) => any) | undefined; } & { 'before-fields'?: (props: {}) => any; } & { 'after-fields'?: (props: {}) => any; } & { submit?: (props: {}) => any; }; emit: ((evt: "submit", payload: FormSubmitEvent>) => void) & ((evt: "error", payload: FormErrorEvent) => void); }>) => import("vue").VNode & { __ctx?: Awaited; }; declare const _default: typeof __VLS_export; export default _default; type __VLS_PrettifyLocal = (T extends any ? { [K in keyof T]: T[K]; } : { [K in keyof T as K]: T[K]; }) & {};