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