declare const formNamespace: string, createFormBEM: (el?: import("../utils").Modifiers | null | undefined, modifier?: import("../utils").Modifiers | undefined) => string; export { formNamespace, createFormBEM }; /** * 事件名前缀 */ export declare enum EventPrefixEnum { /** * 表单事件 */ FORM = "form", /** * 字段事件 */ FIELD = "field", /** * 联动事件 */ LINKAGE = "linkage" }