/** * @file 组件 Env,包括如何发送 ajax,如何通知,如何跳转等等。。 */ import React from 'react'; import type { RendererEnv } from './types'; export declare const EnvContext: React.Context; /** * 用于在移动端或不同语言环境下使用不同配置 * // 这里不能用 addSchemaFilter 是因为还需要更深层的替换,比如 select 里的 options */ export declare const envOverwrite: (schema: any, locale?: string) => void;