import { InjectionKey } from "vue";
/** 表单布局方式 */
export declare type FormLayout = "vertical" | "horizontal" | "inline";
export interface FormContext {
    model: object;
    layout: FormLayout;
}
export declare const FormInjectionKey: InjectionKey<FormContext>;
