import { Schema } from '@formily/react'; import type { JSXComponent } from '@formily/react'; interface ICreateSchemaComponent { componentName: string; component: JSXComponent; transform?: (schema: Schema) => Schema; } /** * 将普通组件转换成使用 formily SchemaField 渲染的组件 */ export declare const createSchemaComponent: (options: ICreateSchemaComponent) => any; export declare const createVoidSchemaComponent: (options: ICreateSchemaComponent) => any; export {};