import { Bridge } from './bridge-interface'; export type BridgeType = 'go'; /** * Create the Go bridge for RLM communication. * Throws if the Go binary is not available. */ export declare function createBridge(bridgeType?: BridgeType): Promise;