import { XconsoleRenderOpts } from '../types/XConsoleApp'; declare global { interface Window { __isSSR: boolean; } } /** * 初始化 Xconsole 的一些基础配置 */ declare const clientRender: (opts: XconsoleRenderOpts) => Promise<{ bootstrap: ((props: any) => Promise)[]; mount: ((props: any) => Promise)[]; unmount: ((props: any) => Promise)[]; update: ((props: any) => Promise)[]; exposedModule: Record; } | undefined>; export default clientRender;