import type { HookDispatcher } from '../hooks/index.js'; import type { MutableRuntimeState } from './mutable-runtime-state.js'; import type { RuntimeEventBus } from './events/index.js'; export interface HookBridgeRegistrationOptions { readonly runtimeBus: RuntimeEventBus; readonly hookDispatcher: HookDispatcher; readonly runtime: MutableRuntimeState; } export declare function registerBootstrapHookBridge(options: HookBridgeRegistrationOptions): Array<() => void>; //# sourceMappingURL=bootstrap-hook-bridge.d.ts.map