import { ComputedRef, InjectionKey } from 'vue'; import { type FormStore } from './store'; import { FormProps } from './props'; import { OnFormChange } from './types'; export interface IFormContext { store: FormStore; formProps: ComputedRef>; onChange: OnFormChange; } export declare const FORM_CONTEXT_KEY: InjectionKey;