import type { IScopedContext, RendererEnv } from 'jamis-core'; import type { AppSchema, PageSchema } from '../types'; export declare function embed(container: string | HTMLElement, schema: AppSchema | PageSchema, props?: any, envParam?: Partial): Promise, callback?: () => void) => void; /** * 更新schema和props */ updateSchema: (newSchema: AppSchema | PageSchema, props: Record) => void; unmount: () => void; }>;