import { FormDataModel } from '../../../types/src/index'; import { InjectionKey, Ref } from 'vue'; export declare const FORM_CONTEXT_KEY: InjectionKey; export declare const FORM_INSTANCES_KEY: InjectionKey<{ [name: string]: any; }>; export declare function useForm(formName: string): { formData: Record; formInstances: Ref<{ [name: string]: any; }, { [name: string]: any; }>; };