import { WebView as WebView$1, CreateStore, BridgeStores, NativeBridge } from '@open-game-system/app-bridge-types';

type WebView = WebView$1;
/**
 * Creates a new store with the given configuration according to Plan v4.
 */
declare const createStore: CreateStore;
/**
 * Creates a native bridge instance using the BridgeWebView type from types package.
 */
declare function createNativeBridge<TStores extends BridgeStores>(): NativeBridge<TStores>;

export { type WebView, createNativeBridge, createStore };
