import type { InvisiblePlugin, autorun, isRoom, toJS } from 'white-web-sdk'; export interface WhiteWebSdkBridgeRuntime { toJS: typeof toJS; autorun: typeof autorun; isRoom: typeof isRoom; InvisiblePlugin: typeof InvisiblePlugin; } export declare function setWhiteWebSdkBridgeRuntime(runtime: WhiteWebSdkBridgeRuntime): void; export declare function getWhiteWebSdkBridgeRuntime(): WhiteWebSdkBridgeRuntime;