import type { InternalRuntimeContext, RuntimeContext } from '../types/runtime/context'; import type { RuntimePlugin, RuntimePluginExtends } from '../types/runtime/plugin'; export interface RuntimeConfig { plugins?: RuntimePlugin[]; } export declare function initRuntimeContext(): RuntimeContext; export declare function createRuntimeContext({ runtimeContext, config, plugins, }: { runtimeContext: RuntimeContext & Extends['extendContext']; config: Extends['config']; plugins: RuntimePlugin[]; }): InternalRuntimeContext;